The Magazine
Linux Journal is the premier source for how-tos, projects, product reviews, expert advice and opinions for everything Linux.
| Quick Compiz Screenshots | Feb 09, 2010 |
| Welcome to the New LinuxJournal.com | Feb 09, 2010 |
| Symbian Opens Up | Feb 04, 2010 |
| The Small Picture: More OpenOffice.org Extensions | Feb 04, 2010 |
| Pass the Bug, Collect $500 | Feb 02, 2010 |
| Start and Control konsole with DBUS | Feb 02, 2010 |
This Week's Member Giveaway
This week 5 lucky Members will receive a copy of The Official Ubuntu Server Book by Benjamin Mako Hill and Linux Journal's very own Kyle Rankin. No entry necessary. Check back here early next week to find out who the lucky Online Members are.














Comments
its an oldie but a goodie
cat is so versatile I use it many times a day. You can even do things like this =)
> cat /dev/urandom > /dev/audio
Been done.
For a more in-depth look, get the O'Reilly book "Mastering Cat", by Schlomi Fish. (I can't post a link through the filter, but Google it
Don't forget notation
Don't forget notation like:
$ cat > file << EOF
> Line 1
> Line 2
> EOF
$ cat file
Line 1
Line 2
That will cause cat to exit when the line 'EOF' is entered
Post new comment