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