Free Online Programming Tutorials

Let’s Learn Web Programming!





Archive for the ‘Shell Script Programs’ Category

/* Unix Shell Script To Display Process With 30 Seconds Delay */

count=5
while(test $count -gt 0)
do
Read the rest of this entry »

/* Unix Shell Script To Check All Files Given In Command Line */

if(test $# -eq 0)
then
echo enter files
else
Read the rest of this entry »