Basic Linux Command - pinedance/codenote GitHub Wiki
wget
is a Linux command to download a file from the web.
wget http://getbootstrap.com/2.3.2/assets/bootstrap.zip
unzip
is a Linux command to unzip a zip file.
unzip bootstrap.zip
cp
is Linux command to copy a file from one place to another.
cp bootstrap/css/bootstrap.css ~/shared_todo_app/app/assets/stylesheets/bootstrap.css
touch
is Linux command to make a file
unlink
is Linux command to delete a file