ls
cd dir_name
mkdir dir_name
rmdir dir_name
pwd
cp example.txt backup/
mv example.txt backup/
rm example.txt
touch shayan.txt
cat example.txt
man ls
htop
chmod 700 file.txt
chown new_owner example.txt
tar cf archive.tar file1 file2 file3
gzip file.txt
gunzip file.txt.gz
ssh username@server_address
scp myfile.txt user@remotehost:/home/user/
ping 8.8.8.8
ifconfig
netstat
route [options] [add/delete/show]
top
ps aux
kill [PID]
systemctl start nginx
systemctl status nginx
systemctl stop nginx
service apache2 start
useradd harry
passwd harry
userdel harry
su john
sudo
uptime
df
du
sudo mount /dev/sdb1 /mnt/usb
sudo umount /mnt/usb
date
whoami
ls
finger harry
uname
uname -a
history
echo 'I need Tshirt from codeswear!'
$ ls | tee file.txt
locate file.txt
cat file.txt
banana
orange
apple
sort file.txt
apple
banana
orange
cat file.txt
apple
orange
banana
apple
banana
uniq file.txt
apple
orange
banana
head file.txt
tail file.txt