Search Results

Search: Posts Made By: arjun_arippa
1,967
Posted By RudiC
You could use an "associative array" in shell...
You could use an "associative array" in shell programming, or e.g. use a text processing tool like awk.

Please be aware that either method is highly sensitive to the variable's name's orthography...
1,967
Posted By RudiC
In a while loop, the input file is read (stdin...
In a while loop, the input file is read (stdin redirection) with a redefined "Internal Field Separator" (set to " ). As there are two IFS chars in every line, we have three fields (the third being...
1,967
Posted By RudiC
Try while IFS='"' read A B; do C=$C$B; done <...
Try
while IFS='"' read A B; do C=$C$B; done < file; echo $C
select name, emp_id, org_name from table_name where condition_1 = ABC and condition_2 = DEF order by other condition

You are aware of...
2,701
Posted By CarloM
Then you'll need to use a temporary file, e.g. ...
Then you'll need to use a temporary file, e.g.

sed 'stuff' odcm.xml > tempfile
mv tempfile odcm.xml
Showing results 1 to 4 of 4

 
All times are GMT -4. The time now is 06:48 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy