Scripting Flashcards
What is the syntax for the first line of a linux script?
!#/bin/bash
tells computer what program to use as interpreter
What is the linux command to change a file from read only to executable?
chmod +x
What denoted a variable in a linux bash script?
<var>=</var>
$<var> to call variable</var></var>
How do you pass in variables to a linux bash script?
$1
$ followed by number is substituted by parameters passed into script
What is the syntax that forms an if statement in bash scripting?
if [ ]
then
fi
*fi must be used to close the statement block
What is the syntax that forms a for loop in bash scripting?
for in
do
done
*done must be used to close loop block
What are the built in command line script editors in linux?
pico
nano
What is the syntax to substitute a command to be evaluated by the shell and return its output?
`` - legacy: i.e ls
will substitute value of ls
$() - modern: i.e $(ls) will substitue value of ls
What is the syntax to disregard errors in a bash script?
> /dev/null 2>&1
errors get sent to a void which disregards anything put in it
What is the syntax to see the built in error exit code?
$?
can query $? to see if an error occurred
will be 0 if no errors