Last active
March 27, 2019 23:49
-
-
Save blackzphoenix/203aba8106e029ba11bcf8e3bca39f61 to your computer and use it in GitHub Desktop.
cal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| IFS="- " | |
| echo "The script name : $0" | |
| echo "The first argument to the script : $1" | |
| echo "The second argument to the script : $2" | |
| echo "The third argument to the script : $3" | |
| echo "The fourth argument to the script : $4" | |
| echo "The number of arguments passed to the script : $#" | |
| echo "* Display all free Softwares names usinng (\$@ version) : $@" | |
| echo | |
| echo "* Display all Free Softwares names using (\$* version) : $*" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment