InterviewSolution
Saved Bookmarks
| 1. |
How will you pass and access arguments to a script in Linux? |
|
Answer» In SCRIPTS, ARGUMENTS are passed as FOLLOWS: scriptName "Arg1" "Arg2"…."ARGN" Arguments in a script can be ACCESSED as follows: $1 , $2 .. $n |
|