Search Results

Search: Posts Made By: JavaHater
2,006
Posted By JavaHater
awk -F"." '{u[$1]=$0}END{for(i in u) print...
awk -F"." '{u[$1]=$0}END{for(i in u) print u[i]}'
6,130
Posted By JavaHater
echo livingroom-110111105637.avi | sed -r...
echo livingroom-110111105637.avi | sed -r 's@(.*-......)(..)(..)(..)@\1-\2.\3.\4@'
1,327
Posted By JavaHater
awk -vRS="" -vFS="\n" '/Age/{re=$1} $0~re{print...
awk -vRS="" -vFS="\n" '/Age/{re=$1} $0~re{print }' file
7,151
Posted By JavaHater
awk -F"|" '$1~/BELL-1180-1180-81/ &&...
awk -F"|" '$1~/BELL-1180-1180-81/ && $2!~/:10[12]$/' file
2,360
Posted By JavaHater
sed -r 's/^(.).*/\1/' file sed -rn...
sed -r 's/^(.).*/\1/' file
sed -rn 's/^[[:space:]]*([[:alpha:]]).*/\1/p' file
2,360
Posted By JavaHater
sed -r 's/^(.).*/\1/' file
sed -r 's/^(.).*/\1/' file
Showing results 1 to 6 of 6

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