Last active
March 9, 2017 19:39
-
-
Save var-bin/0e089313242a864ae4fc68c74473b650 to your computer and use it in GitHub Desktop.
Working with variables in bash. Repository https://github.com/var-bin/terminalForCoder__WSD
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 | |
var1="$1" | |
var2="$2" | |
echo "Arguments are ${var1} and ${var2}" | |
# ./variables.sh Hello world - how this script should be called |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment