linuxkurs/beispiele/4/create_files_with_space.sh

5 lines
56 B
Bash
Raw Normal View History

2019-01-02 15:04:16 +01:00
#!/bin/bash
for f in {1..9}; do
touch "$f xx.txt"
done