Community Page
- www.tech-recipes.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- Thank you so much
- hey
- Thanks mate, Just what I was looking for. It seemed to be a different way of doing things in Leopard than previous versions. Cheers, Mitch
- thanks, i couldnt remember.
- I did this in Garage band, but if forced me to trip the song to 8 seconds in order to send it to itunes ringtones - any ideas on this? Using the new 3GS.
5 years ago
<ul id="quote">The caret ^ and the dollar sign $ are metacharacters that respectively
match the empty string at the beginning and end of a line.</ul>
Not "$=beginning of line, ^=end of line"
5 years ago
Quinn
5 years ago
also, in cat do the following: cat -vet
Raxxal
4 years ago
3 months ago
1 year ago
1 year ago
# cat my_file | sed /^$/d
5 months ago
$ grep -v '^$' file
$ grep '.' file
$ sed '/^$/d' file
$ sed -n '/^$/!p' file
$ awk NF file
$ awk '/./' file
unstableme.blogspot.com