39  Unix Scripting

39.1 Unix Scripting

Here’s a recording of this lecture (59 minutes 17 seconds):

Recording

39.2 Unix Scripting slides

PDF slide set

39.3 Questions

39.3.1 Question 1

Which of the following are true about Unix variables?

39.3.2 Question 2

What will this do?

for file in `ls *.txt`
do
  rm $file
  echo file deleted
done

39.3.3 Question 3

Which of the following are true of find -exec and find | xargs?