Skip to content

Instantly share code, notes, and snippets.

@chrisoverstreet
Last active October 2, 2017 17:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisoverstreet/7ee2efd80aadae04037eab47bc010730 to your computer and use it in GitHub Desktop.
Save chrisoverstreet/7ee2efd80aadae04037eab47bc010730 to your computer and use it in GitHub Desktop.
Ubuntu 16.04 Terminal Keywords
gnome-desktop-item-edit --create-new ~/Desktop
# create new desktop launcher
dpkg -L <package name>
# see where a package is installed
chmod 777 <filename>
# change permissions to read, write, execute
chmod -R <permissionsettings> <dirname>
# change permissions for all sub directories and files
rm -r <director>
# remove entire directory
gedit ~/.profile
# file for PATH variables
mkdir
# Create a new directory
cat <filename>
# read a file
echo "This is a test file." > test.txt
# create a test.txt file with "This is a test file." inside
mv -v ~/Downloads/* ~/Videos/
# Move files, folders
unzip <filename>
#unzip
tar -xvzf <filename>.tar.gz
#tar
wget <url>
# download file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment