linuxkurs/beispiele/create_files_with_space.sh
2019-01-02 15:04:16 +01:00

5 lines
56 B
Bash

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