Welcome to the Hands-on Workshop for automating tasks within the UNIX Shell. We will be learning the basics of working within the UNIX operating system and getting famiilar with the command line interface.
Topics to be covered:
When | Friday, March 18, 2016 .:. 9:00am – 12:00pm | |
Arrival | Pre-workshop Survey | |
9:00 | Automating Tasks with the UNIX Shell | |
10:30 | Break | |
12:00 | Post-workshop Survey and Wrap-up |
Afterwards, you can use the guide below to use the same or similar commands on your personal system.
To run these commands on a Linux machine you just have to run the terminal program. The name of it changes depending on the specific type of Linux. On Ubuntu, for instance, it is called Xterm. Once you run this program it will open up an interface similar to the one used in the workshop that you can use to run commands.
Additional resources to expand your knowledge
Useful software
Aliasing commands
Type the following at the command-line:
alias ls='ls -al'and hit the [Enter] key.
alias rm='rm -i'and hit the [Enter] key.