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.
No Answer is Posted For this Question
Be the First to Post Answer
What is the syntax of "nested if statement" in shell scripting?
I want to monitor a continuously updating log file, what command can be used to most efficiently achieve this?
What language is shell scripting?
What is bash eval?
What is shell application?
Why are there shells on the beach?
Is shell a part of kernel?
What is the lifespan of a variable inside a shell script?
How do you schedule a command to run at 4:00 every morning?
What is bash command used for?
How will I insert a line "abcdef" at every 100th line of a file?
Hi, all Scripting professional. Q. I have written script1.sh and calling script2.sh in script1.sh file using bash shell as interpreter and my log in shell also bash shell.My code like Script1 #!/bin/bash echo "My script2 call" . script2.sh Here script2.sh file run successfully but when I have changed my interpreter bash to ksh like #!/bin/ksh Error are comming script2.sh command not found. Guid me how to call other script in our main script.