blob: bb6c2597f5c9473676d488f5b75af28d276f222d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
export PATH=/bin:/usr/bin:$PATH
env
sleep 3
touch $out
# Use `>>'; without proper locking this will cause text duplication.
echo -n $(cat $inputs)$text >> $out
sleep 2
|