6 lines
107 B
Bash
6 lines
107 B
Bash
|
|
printf "Enter a time in seconds to sleep: "
|
||
|
|
read seconds
|
||
|
|
echo "Sleeping..."
|
||
|
|
sleep "$seconds"
|
||
|
|
echo "Awake!"
|