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.
Bourne Shell Script & Man
Name: Mary Date: May 23, 2003 at 07:26:20 Pacific OS: Unix CPU/Ram: test
Comment:
Can someone please tell me how to write a script to determine for each word in a set whether a UNIX manual page exists for it?
Name: David Perry Date: May 23, 2003 at 08:24:50 Pacific
Reply:
for manpages in tar ls cat unknown ; do if [ `man $manpages 2>&1 | grep -c "^No manual"` -gt 0 ] ; then echo "No man pages found for $manpages" fi done
Summary: I want to write bourne shell script called clean.Clean should move all files in a specified directory that has not been modified after the specified date, to a directory called .junk. the command shou...
Summary: Hey, Please help me with this bourne shell script: the script prompts the user for a list of files and then runs the spell command on each of the file. Storing the misspelled words in a temporary fil...
Summary: Any help >>>>on my Bourne shell script >>>>is appriciated!!! the requirement is: a shell script that will check the spelling of a file and append the words to the end of the file! Looking forward for ...