Skip to content

Instantly share code, notes, and snippets.

@blackzphoenix
Last active March 27, 2019 23:49
Show Gist options
  • Select an option

  • Save blackzphoenix/203aba8106e029ba11bcf8e3bca39f61 to your computer and use it in GitHub Desktop.

Select an option

Save blackzphoenix/203aba8106e029ba11bcf8e3bca39f61 to your computer and use it in GitHub Desktop.
cal
#!/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