Nested while read line loop | Unix Linux Forums | Shell Programming and Scripting Hi, Can anyone please help me: i'm trying to read a file with directory-names , then go to that directory and read another (output) file to perform some tasks per line (second read line in the part of script below). The problem is that after the nested wh
Equivalent to *while read line* in Linux - Experts Exchange - The network for technology professiona What Am I missing so this works from the command line , what I want is to import the users from a Unix OS from the passwd file into linux: ksh > cat passwd | cut -f1 -d: | while read line ' do '... ... Not finding the exact solution you need?Ask the exper
ksh::while read line - LinuxQuestions.org hello. I'm writing simple ksh script.I have a problem. my code is: Code: 1 #!/bin/ ksh 2 cd ...
Ksh Read a File Line By Line ( UNIX Scripting ) Thanks, I usually don’t like doing my heavy lifting with shell scripting. Still, this is useful ...
read a file line by line in ksh | Unix Linux Forums | Shell Programming and Scripting Hi, In ksh we use ' while read line' statement to read a file line by line. In my input file I have 5 ...
Ksh Read a File Line By Line ( UNIX Scripting ) | The Tech Expert Team H ow do I read a file line by line using KSH shell scripting under UNIX like operating systems? You can ...
LinuxQuestions.org - ksh::while read line - - ksh:: while read line (http://www.linuxquestions.org/questions/programming-9/ ksh- while- read- line ...
ksh的while read line怎樣按一個命令的輸出做迴圈-Shell-ChinaUnix.net oracle@testdb1:/oravl01/oracle> while read line> do> echo> echo $ line> done ksh的 while read line ...
How to read a file line by line in ksh - Experts Exchange - The network for technology professionals #!/bin/ ksh while read line do echo ${ line} done < krupa.txt Author Comment deepak_tyco 2008-01-17 at ...
reading a file line by line in ksh - Stack Overflow ... while read line; do autosys_showJobHistory.sh $ line | grep 1[1..6]:[0..9][0..9] | grep 24 ... now ...