what are the
positional parameres of shell script??
Answers
Answered by
3
Positional parameters in a shell script are nothing but the command line arguments passed to a shell script. The following are some of the positional parameters used: $# - Total number of arguments $0 - Command or the script name $1,$2, $3 - First, second and third args respectively.
shraddha7916:
Thank you
Similar questions