SI
SI
discoversearch

We've detected that you're using an ad content blocking browser plug-in or feature. Ads provide a critical source of revenue to the continued operation of Silicon Investor.  We ask that you disable ad blocking while on Silicon Investor in the best interests of our community.  If you are not using an ad blocker but are still receiving this message, make sure your browser's tracking protection is set to the 'standard' level.
Technology Stocks : LINUX

 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext  
To: JC Jaros who wrote (2219)4/7/2000 2:00:00 PM
From: Mitch Blevins  Read Replies (2) of 2615
 
#!/bin/bash
#
# This is the 'rtq' shell script, it is located in
# either /usr/local/bin or ~/bin

LYNX=/usr/bin/lynx

if test ! -x $LYNX; then
echo "Where the hell is lynx?"
fi

case "$1" in
aep)
$LYNX http://path/to/americanelectricpower/quotes.html
;;
msft)
$LYNX http://path/to/microsoft/quotes.html
;;
*)
$LYNX http://path/to/default/page.html
;;
esac

exit 0
Report TOU ViolationShare This Post
 Public ReplyPrvt ReplyMark as Last ReadFilePrevious 10Next 10PreviousNext