How to make userdefined variables to available for all
other shells?
Answer Posted / asit
for Global declaration::
setenv x 10
setenv str "test"
for local declaration::
set a = 10
set s = "test"
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does egrep mean?
What is a scripting language simple definition?
What is the meaning of $1 in shell script?
What is the difference between bash and shell?
What is shell company all about?
What is shell application?
Print a given number, in reverse order using a shell script such that the input is provided using command line argument only.
How to print the first array element?
How do I save a powershell script?
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 does echo $0 do?
c program which behaves like a shell(command interpreter). it has its own prompt say "NewShell$".any normal shell command is executed from your shell by starting a child process to execute a system program corrosponding to the command
What does echo mean in scripting?
Give some situations where typing error can destroy a program?
What is subshell?