Skip to content

Instantly share code, notes, and snippets.

View dryster's full-sized avatar

Dave dryster

  • Vancouver Island
View GitHub Profile
@megawertz
megawertz / bashsnippets.sh
Created October 17, 2013 01:27
Some basic bash snippets I use to introduce shell scripting to my Linux class.
#!/bin/bash
# viewing environment variables
echo "The value of the home variable is: "
echo $HOME
# issue a command
echo "The output of the pwd command is: "
pwd