You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
227 B
12 lines
227 B
10 years ago
|
#!/bin/sh
|
||
|
|
||
|
# This starts a child process in the background which will block since its file
|
||
|
# descriptors are still tied to us.
|
||
|
sleep 10000 &> /dev/null
|
||
|
|
||
|
echo "some test error" >&2
|
||
|
|
||
|
cat /usr/share/dict/american-english
|
||
|
|
||
|
exit 1
|