Apply all dialog box.in JAVA Script July 20, 2018 Add Comment Edit Apply all dialog box.in JAVA Script programs and screept for all dialog box in java screept it is useful in your website creation. 1.al...
free website creation and free web hosting June 30, 2018 Add Comment Edit for learn how to create html and html-5 website for free and how to upload a website for free click on below link for full cource https:/...
shell script for The script will receive the filename or filename with its full path. The script should obtain information about this file as given by "ls -l" and display it in proper format. e.g. - Filname : , File access permission : , Number of links : , Owner of the file : , Group to which belongs : , Size of file : , File modification date : , File modification time : sh sh6.sh out.sh May 07, 2018 Add Comment Edit -----------------------------Script--------------------------- str=`ls -l $1` echo "file Name : " $1 set -- $str echo "File ...
shell scripts for The file /etc/passwd contains info about all users. Write a program which would receive the logname during execution, obtain information about it from the file and display the information on screen in some appropriate format. (Hint : Use cut) May 07, 2018 Add Comment Edit -----------------------------Script--------------------------- echo "Enter the logname : " read lname uid=`grep $lname /etc/pas...
shell scripts for If a five digit number is entered through keyboard, calculate the sum of its digits. May 07, 2018 Add Comment Edit -----------------------------Script--------------------------- echo -e "Please enter a 5 digit number : \c" read number len=`ex...
The length and breadth of a rectangle and radius of a circle are entered through the keyboard. Calculate the perimeter and area of rectangle and area and circumference of the circle. May 07, 2018 Add Comment Edit -----------------------------Script--------------------------- echo "Give Details of the Rectangle" echo -e "Enter Len...