Operating System/Shell Scripting
echo $SHELL
|
Operating System/Shell Scripting
./process-name &
|
Operating System/Shell Scripting
$1, $2 and so on. $0 is your script name.
|
Operating System/Shell Scripting
if then ?fi
|
Operating System/Shell Scripting
-eq, -ne, -lt, -le, -gt, -ge
|
Operating System/Shell Scripting
-s filename tells you if the file is not empty, -f file...
|
Operating System/Shell Scripting
! tests for logical not, -a tests for logical and, and ...
|
Operating System/Shell Scripting
$#
|
Operating System/Shell Scripting
if then elif fi
|
Operating System/Shell Scripting
for in do done
|