how did u debugging in unix/ linux platform ??( project
Related)
Answers were Sorted based on User's Feedback
Answer / santana20142003
If it is a shell script use #!/bin/ksh -x
| Is This Answer Correct ? | 4 Yes | 0 No |
For gdb in linux/unix Gnu Debugger is available. Please
read the mannuals for gdb.
man gdb
| Is This Answer Correct ? | 1 Yes | 0 No |
Using set -A write a script to print the output of the ls command in 5 columns with two spaces between each column. Pretend that ls does not have multicolumn output.
What is the syntax of "nested if statement" in shell scripting?
How can you get the value of pi till a 100 decimal places?
What is web script?
In shell scripting if text is surrounded by single quotes what does it denotes?
In my bash shell I want my prompt to be of format '$"present working directory":"hostname"> and load a file containing a list of user-defined functions as soon as I log in, how will you automate this?
Tell something about the super block in shell scripting?
How will you find the 99th line of a file using only tail and head command?
write a shell program to check wheather a given string is pallindrome or not?
How can the contents of a file inside jar be read without extracting in a shell script?
There is a record with fields namely name,roll no.,salary,grade etc.Now,write a script to create a file with multiple records have same combination of fields but with unique roll numbers.The script should work for different names in the input file.
I want to connect to a remote server and execute some commands, how can I achieve this?