5 lines
56 B
Bash
5 lines
56 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for f in {1..9}; do
|
||
|
touch "$f xx.txt"
|
||
|
done
|