Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
remove spaces
Name: coco1239 Date: December 26, 2002 at 01:55:55 Pacific OS: fds CPU/Ram: fds
Comment:
hi
i want to know if there is command to remove space at the begining of line without awk
Summary: Hi All, In this Unix forum, i saw a msg from Gopalkrishna V titled "Deleting a file(Name) with spaces". I was just wondering how can I find files with spaces in a large directory and rename files by r...
Summary: Hi, I got the solution myself #get last record tail -2 $1/Atul_rel.txt > $1/tmp #remove space from last record sed 's/[ \t]*$//' $1/tmp > $1/tmp1 #delete last record from main file sed '$d' $1/Atul_...
Summary: Hi, I have a file f1 that contains the below line in it. /logo/jpg/CustArtRepository/04/04/0492304_CA001_300.jpg I am using the below awk command to extract 04/04 from it. awk -F"/" '{print $5,"/",$6}...