echo 'error $?' echo 'shell name $0'
echo "error $?" #gives the error code of the last command echo "shell name $0" #gives the current shell name
X=`expr 100 + 50 '*' 3` echo $X
FSIZE=`wc -l /etc/profile`
FSIZE=$(wc -l /etc/profile)