WaZaRWiki : BashTips

GaelReignier :: Categories :: PageIndex :: RecentChanges :: RecentlyCommented :: Login/Register :: Hosted by: eNiX

Revision [197]

This is an old revision of BashTips made by GaelReignier on 2008-08-22 11:47:48.
Exit status: http://tldp.org/LDP/abs/html/exit-status.html
0 is good and you can retrieve the last exit status using echo $?


#!/bin/sh
# this is a comment
echo "The number of arguments is $#"
echo "The arguments are $*"
echo "The first is $1"
echo "My process number is $$"
echo "Enter a number from the keyboard: "
read number
echo "The number you entered was $number"


Debug mode:
on: set -x
off: set +x

There are no comments on this page. [Add comment]

Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by WikkaWiki
Page was generated in 0.2364 seconds