Linux -Datei ohne Inhalt erstellen
#solution 1
touch filename
#solution 2
> filename # or >> filename
#solution 3
cat > filename
KeWols
#solution 1
touch filename
#solution 2
> filename # or >> filename
#solution 3
cat > filename