9 lines
210 B
Bash
Executable File
9 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[[ $1 ]] || exit 1
|
|
|
|
touch $1/ex_1/src/main.c
|
|
touch $1/ex_1/src/include/test.txt
|
|
touch $1/ex_1/bin/anotherfile.txt
|
|
|
|
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | head -c 20 > $1/ex_1/test/results/res1.txt |