linuxkurs/beispiele/4/create_files_with_space.sh
2019-01-08 13:08:27 +01:00

5 lines
56 B
Bash

#!/bin/bash
for f in {1..9}; do
touch "$f xx.txt"
done