Scripting Flashcards

1
Q

What is the syntax for the first line of a linux script?

A

!#/bin/bash

tells computer what program to use as interpreter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the linux command to change a file from read only to executable?

A

chmod +x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What denoted a variable in a linux bash script?

A

<var>=</var>

$<var> to call variable</var></var>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you pass in variables to a linux bash script?

A

$1

$ followed by number is substituted by parameters passed into script

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the syntax that forms an if statement in bash scripting?

A

if [ ]
then
fi

*fi must be used to close the statement block

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the syntax that forms a for loop in bash scripting?

A

for in
do
done

*done must be used to close loop block

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the built in command line script editors in linux?

A

pico

nano

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the syntax to substitute a command to be evaluated by the shell and return its output?

A

`` - legacy: i.e ls will substitute value of ls

$() - modern: i.e $(ls) will substitue value of ls

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the syntax to disregard errors in a bash script?

A

> /dev/null 2>&1

errors get sent to a void which disregards anything put in it

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the syntax to see the built in error exit code?

A

$?

can query $? to see if an error occurred
will be 0 if no errors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly