11 lines
91 B
Plaintext
11 lines
91 B
Plaintext
|
|
#! /usr/bin/bash
|
||
|
|
|
||
|
|
|
||
|
|
touch /tmp/testfile
|
||
|
|
|
||
|
|
sleep 10
|
||
|
|
echo "Ende der Arbeit"
|
||
|
|
|
||
|
|
rm /tmp/testfile
|
||
|
|
|