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