My latest and greatest tips, resources, and reads.So much goodness all in one place!
ls
cd
cd /home/user/documents
pwd
cp
cp file1.txt file2.txt
mv
mv file1.txt file2.txt
rm
rm file1.txt
mkdir
mkdir new_directory
rmdir
rmdir new_directory
touch
touch file1.txt
cat
cat file1.txt
more
Example: more file1.txt
more file1.txt
less
less file1.txt
head
head -n 5 file1.txt
tail
tail -n 5 file1.txt
grep
grep "pattern" file1.txt
find
find /home/user/ -name "file1.txt"
locate
locate file1.txt
chmod
chmod 755 file1.txt
chown
chown user:group file1.txt
tar
tar -cvf archive.tar /home/user/