Operating Systems 2021F: Assignment 2

From Soma-notes
Revision as of 00:10, 7 October 2021 by Soma (talk | contribs) (Created page with "'''This assignment is still being developed.''' ==Code== ===3000capture.c=== ===countdown.sh=== <syntaxhighlight lang="sh" line> #!/bin/bash for i in `seq 10 -1 1`; do...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This assignment is still being developed.


Code

3000capture.c

countdown.sh

#!/bin/bash

for i in `seq 10 -1 1`; do
    echo ">>>>  $i  <<<<"
    sleep 1
done

echo "Blastoff!"