Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Korn Shell script help please!!
Name: Sue Date: December 10, 2002 at 19:09:08 Pacific OS: sun 5.8 CPU/Ram: sun 5.8
Comment:
Under Korn shell 1. write a script to backup a list of files 2. write a script to finds all soft links to specific file.
Your kind help would be appreaciated! Thanks a lot...
Summary: Here is a Korn Shell script that will also do what you want. It uses the built in features of the shell as opposed to calling awk to do the work. #!/bin/ksh IFS=: exec 3<./names.txt while read -u3 la...
Summary: Please help me on two shell scripts: 1. the script simulates the ls -l command but prints only three columns of our choice. 2. the script makes a file out of the information in the etc/passwd. file u...
Summary: hi, I have a question. I'm doing a Korn Shell script. I want to find out the list of users who have either logged in or logged out during the period(like 20 minutes or etc). Thank you for helping.(...