April 2018
Beginner
284 pages
7h 3m
English
#!/bin/bash# Welcome to shell scripting# Author: Mokhtar
#!/bin/bashecho $1echo $2echo $3
And we run the script with these options:
$ ./script1.sh -a -b50 -c
What is the result of running this code?
#!/bin/bashshiftecho $#
If we run it with these options:
$ ./script1.sh Mokhtar -n -a 35 -p