11 lines
205 B
Bash
Executable File
11 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
# Crea una struttura di directory per test
|
|
|
|
mkdir -p testdir/{sub1,sub2}
|
|
touch testdir/file1.txt
|
|
touch testdir/sub1/file2.txt
|
|
touch testdir/sub2/file3.txt
|
|
|
|
echo "Directory structure created."
|
|
|