UNIX & Linux programs Program in UNIX to display processes in the system every 30 seconds five times using a while loop Share Write a script to display the processes in the system every 30 seconds five times using a while lo… Read More
UNIX & Linux programs Program in UNIX rename which will rename files in the current directory according to the following arguments: suffix to be replaced Share Write the BASH shell script rename which will rename files in the current directory according to th… Read More
UNIX & Linux programs Program in UNIX to validate the date Share Write a shell script to validate the date echo "Enter date (dd-mm-yyyy) :" read da IFS="… Read More
UNIX & Linux programs Program in UNIX to check entered string is palindrome or not Share Write a shell script to check entered string is palindrome or not echo -n "enter string: " … Read More
UNIX & Linux programs Program in UNIX to check entered number is perfect or not Share Write a shell script to check entered number is perfect or not echo Enter a number to find its perfe… Read More
UNIX & Linux programs Program in UNIX to check entered number is Armstrom number or not Share Write a shell script to check entered number is Armstrom number or not echo enter any Number read nu n… Read More
UNIX & Linux programs Program in UNIX to print prime number series. Share Write a shell script to print prime number series. echo –n Enter a num read n num=2 while [ $num -le $n… Read More
UNIX & Linux programs Program in UNIX to check entered number is prime or not. Share Write a shell script to check entered number is prime or not. echo Enter a number to check it is pri… Read More