Loading
Home ›
Commandline 101: cat, Not Just for Purring
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- Linux-Based X Terminals with XDMCP
- Readers' Choice Awards 2011
- 100% disappointed with the decision to go all digital.
- Parallel Programming with NVIDIA CUDA
- You Need A Budget
- Validate an E-Mail Address with PHP, the Right Way
- The Linux powered LAN Gaming House
- The Linux RAID-1, 4, 5 Code
- Python for Android
- Gnome3 is such a POS. No one
3 hours 30 min ago - Gnome 3 is the biggest POS
3 hours 41 min ago - I didn't knew this thing by
9 hours 45 min ago - Author's reply
13 hours 10 min ago - Link to modlys
14 hours 16 min ago - I use YNAB because of the
14 hours 28 min ago - Search
19 hours 31 min ago - Question
19 hours 54 min ago - for the record
19 hours 56 min ago - That's disappointing. Thanks
22 hours 20 min ago





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