Bash Cheat Sheet

Basic Commands

echo
cat
ls [-la]  # list files in the present directory
chmod [+x] file
mkdir  # make new directories
cd  # change the directory
pwd  # present working directory
cp path_from path_to  # copy
mv path_from path_to
rm path  # delect files
rmdir  # delete empty directories
touch file_name # create empty file
                    more ...