Last active
October 2, 2017 17:45
-
-
Save chrisoverstreet/7ee2efd80aadae04037eab47bc010730 to your computer and use it in GitHub Desktop.
Ubuntu 16.04 Terminal Keywords
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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