Search Results

Search: Posts Made By: right_coaster
9,404
Posted By birei
Hi right_coaster, Try: $ cat file1 ...
Hi right_coaster,

Try:


$ cat file1
PRODCON1|SYSTEM.IOA|040720101327|USER1|201004071327
PRODCON2|SYSTEM.TEST|040720101327|USER1|201110010932
SA|SYSTEM.CCR|040720101327|USER1|201004071327...
5,013
Posted By vgersh99
sed 's/[.][0-9]*$//' myFile
sed 's/[.][0-9]*$//' myFile
1,249
Posted By Scott
Tiny correction (assuming the alignment is to be...
Tiny correction (assuming the alignment is to be maintained)...

sed 's/^0/ /' File


Or removed:

sed 's/^[0 ]//' File


If you want to remove multiple leading zeros:

sed 's/^0[0]*/ /'...
1,249
Posted By Shell_Life
sed 's/^0//' File
sed 's/^0//' File
3,512
Posted By vgersh99
nawk -F'@' 'FNR==NR{f2[$1]=$2;next} {print $1,...
nawk -F'@' 'FNR==NR{f2[$1]=$2;next} {print $1, (($1 in f2)?f2[$1]:"NULL")}' file2 file1
Showing results 1 to 5 of 5

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