Search Results

Search: Posts Made By: ltomuno
1,191
Posted By ltomuno
awk '{ORS=" ";print}' input
awk '{ORS=" ";print}' input
6,395
Posted By ltomuno
awk...
awk '{if(NR==1){while(i<NF){i++;a[i]=$i;}}else{for(i in a){print a[i]" (gg) "$1" = "$(i+1)}}}' input
8,989
Posted By ltomuno
sed -n 's/DN[0-9]\{2\}-[0-9]\{3\} //p' input|awk...
sed -n 's/DN[0-9]\{2\}-[0-9]\{3\} //p' input|awk '{ORS="";gsub("\\.",".\n\r");print}'
9,103
Posted By ltomuno
echo '/ and \' | sed 's/[/|\]//g'
echo '/ and \' | sed 's/[/|\]//g'
2,785
Posted By ltomuno
echo '85743975945738' | awk '{print...
echo '85743975945738' | awk '{print substr($0,0,4)"-"substr($0,5,4)"-"substr($0,9)}'
2,783
Posted By ltomuno
awk '!($0 in a){a[$0];if(FILENAME=="4")print}' 3...
awk '!($0 in a){a[$0];if(FILENAME=="4")print}' 3 4 > new
3,705
Posted By ltomuno
sed -n '/\/$/!p' inputfile
sed -n '/\/$/!p' inputfile
4,749
Posted By ltomuno
awk '{print $0<0?-$0"-":$0}'...
awk '{print $0<0?-$0"-":$0}' inputfile
1,155
Posted By ltomuno
chmod -f 664 $file3
chmod -f 664 $file3
1,918
Posted By ltomuno
echo '2011-01-01 00:00:00' | sed -n 's/[-|...
echo '2011-01-01 00:00:00' | sed -n 's/[-| |:]//gp'
1,756
Posted By ltomuno
sed 's/^[0-9]*//;s/:/ /;s/</ /;s/,/ /g' inputfile...
sed 's/^[0-9]*//;s/:/ /;s/</ /;s/,/ /g' inputfile | awk '{NF-=1;print}'
Showing results 1 to 11 of 11

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