List files (long)
$ls -laBash reference.
$ls -la$ls -lh$cd /path/to/dir$pwd$mkdir -p path/to/dir$cp -r source/ dest/$mv source dest$rm -rf directory$cat file.txt$tail -f file.log$head -n 20 file.txt$find /path -name "*.txt"$find . -mtime -7$du -sh *$stat file.txt$ps aux$ps aux | grep nginx$htop$kill -9 <pid>$killall processname$pgrep -f "process name"$command &$nohup command &$jobs$ip a$ip route show$ss -tuln$ping google.com$curl -i https://example.com$wget https://example.com/file.zip$ssh user@host$ssh-copy-id user@host$scp file.txt user@host:/path/$traceroute google.com$chmod 755 file.txt$chmod +x script.sh$chmod -R 644 directory/$chown user:group file.txt$chown -R user:group dir/$sudo command$su - username$tar -czf archive.tar.gz directory/$tar -xzf archive.tar.gz$tar -tzf archive.tar.gz$zip -r archive.zip directory/$unzip archive.zip$gzip file.txt$zcat file.txt.gz$grep -r "pattern" directory/$grep -i "pattern" file.txt$grep -v "pattern" file.txt$sed -i 's/old/new/g' file.txt$awk -F',' '{print $2}' file.csv$sort file.txt | uniq$cut -d',' -f1 file.csv$wc -l file.txt$diff -u file1 file2$uname -a$uptime$df -h$free -h$mount$env$export NAME=value$history