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.
Read file and assign to variables
Name: ahteck Date: July 1, 2003 at 03:35:46 Pacific OS: AIX UNIX CPU/Ram: 512
Summary: Dear All, Please help in this subject.. my requirement is list the files in directory and out of that list make the different set and each should set contains 10 files and assign to variable and start...
Summary: hi, i have an entry: FileName=/home/mqm/adr10098/sample.dat in a file. I want to open this file, search for "FileName=" and then replace the value with someother value(eg: /home/mqm/adr10098/another.d...
Summary: find . -name 'N*' -mtime -10 -exec mv {} N/ \ You need to have a space preceeding the \; -exec mv {} N/ The {} is a substitute for what is returned by the find command. -exec mv {} N/ say to execute ...