Search Results

Search: Posts Made By: dhilipan123
9,549
Posted By dhilipan123
can you please try this tr -d '\194' < input >>...
can you please try this
tr -d '\194' < input >> output

 is assigned of value 194
1,575
Posted By dhilipan123
awk is also working fine, awk -F"_"...
awk is also working fine,
awk -F"_" '{if($3>=20120919 && $3<=20120920) print $0}' filename
2,019
Posted By dhilipan123
ur output: 2012-08-30 00:01:58,577 - 2012-08-30...
ur output: 2012-08-30 00:01:58,577 - 2012-08-30 00:01:56,554 2.23

we can do it using awk, since it is ',' delimited file
awk -F',' '{print $1"-"$2" "$5}' filename >> newfilename
984
Posted By dhilipan123
sed 's/[^<]*<\([^>]*\)>;\? \?/\1\n/g' file ...
sed 's/[^<]*<\([^>]*\)>;\? \?/\1\n/g' file

can anyone explain the above?
Showing results 1 to 4 of 4

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