Linux-Handson Problem (DU)
Program: First copy below in any file and name it a.sh , after that give execute permission chmod +x a.sh. Run it like ./a.sh. Code : #!/bin/sh Green='\033[0;32m' while : do echo "${Green}WELCOME TO LINUX KURIOSITY" echo "${Green}LEARN DU COMMAND IN INTERACTIVE WAY" echo "${Green}Press 0 to learn about du command" echo "${Green}Press 1 to learn about -a option" echo "${Green}Press 2 to learn about -h option" echo "${Green}Press 3 to learn about -c option" echo "${Green}Press 4 to learn about -L option" echo "${Green}Press 5 to learn about -s option" echo "${Green}Press 6 to learn about --time option" echo "${Green}Press 7 to learn about -x option" echo "${Green}Press 8 to exit" echo "Please enter the option" read option case $option in 0) echo "#########START#######" echo "Summarize disk usag...