11 lines
135 B
Bash
Executable File
11 lines
135 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# stall: Do nothing, for a very long time.
|
|
#
|
|
# --Kirsle
|
|
# http://sh.kirsle.net/
|
|
|
|
while [ /bin/true ]; do
|
|
sleep 1337
|
|
done
|