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 from file in shell script
Name: Mel Date: September 13, 2002 at 10:56:59 Pacific OS: unix CPU/Ram: solaris
Comment:
Hi guys, i have a file inside file file name are stored 1 filename per line i want to open the file and read each line from the file and process it...how should i do it in shell script...your help will be appreciated
Summary: In shell script sed or awk command, can I use hexadecimal code for substitution? I want to perform the following: Input file: Line1 Line2 Line3 Line4 Output file: (all in one line now) Line1Line2Line...
Summary: Hi, I'm trying to run loops in shell scripts using the following script. loop=1 while [ loop -lt 10 ] do echo 'this is my $loop text-line' loop='expr $loop + 1' done ---- but I'm getting error: test: ...