Skip to content

Instantly share code, notes, and snippets.

@var-bin
Last active March 9, 2017 19:39
Show Gist options
  • Save var-bin/0e089313242a864ae4fc68c74473b650 to your computer and use it in GitHub Desktop.
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
#!/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