Search Results

Search: Posts Made By: selvam
1,299
Posted By Corona688
Never PM for tech support. It's against the...
Never PM for tech support. It's against the rules and doesn't get me here any faster anyway. I'm not "on call".

Well of course my program's not going to work if your input's completely...
1,299
Posted By apmcd47
You could look at cut and paste cut -d, -f2...
You could look at cut and paste

cut -d, -f2 b.csv> b.tmp
cut -d, -f2 c.csv> c.tmp
paste -d, a.csv b.tmp c.tmp > final.csv

Andrew
1,299
Posted By Corona688
Are they really all in the same order like that? ...
Are they really all in the same order like that?

# open files for later
exec 5<b.csv
exec 6<c.csv
while read A B
do
# read from b.csv
read C D <&5
# add more records...
1,795
Posted By hergp
ls -lrt file-2011030[5-9]*.gz ...
ls -lrt file-2011030[5-9]*.gz file-2011031[0-5]*.gz


Filename-Globbing is not as powerful as regular expressions, so you have to do some tricks sometimes.
Showing results 1 to 4 of 4

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