linuxkurs/beispiele/4/create_files_with_space.sh

5 lines
56 B
Bash

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