Installation
- Copy and paste this entire script into a plain text file.
#!/bin/sh #Yold's Slashdot newsfeed reader echo "Current Slashdot Headlines" curl -s http://slashdot.org/slashdot.xml | \ sed -n -e '/title/p' | \ sed -e 's/<[^>]*>//g' > /tmp/slash.txt cat /tmp/slash.txt | more - Name the script slashreader.sh, save to your home directory.
- Open a terminal, and type chmod a+x ~/slashreader.sh to make the file executable.
- Add alias slashreader "sh ~/slashreader.sh" to your .cshrc file in your home directory.
- Type slashreader in the terminal

