mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
427 B
27 lines
427 B
2 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
IFS='
|
||
|
'
|
||
|
|
||
|
if [[ $# -eq 1 ]]; then
|
||
|
mkdir -p $1
|
||
|
cd $1
|
||
|
touch -t 01010001 ciao
|
||
|
chmod 442 ciao
|
||
|
mkdir mamma
|
||
|
touch -t 01020001 mamma
|
||
|
chmod 777 mamma
|
||
|
touch -t 01030001 guarda
|
||
|
chmod 400 guarda
|
||
|
touch -t 01040001 come
|
||
|
chmod 642 come
|
||
|
mkdir mi
|
||
|
touch -t 01050001 mi
|
||
|
chmod 452 mi
|
||
|
touch -t 01060001 diverto
|
||
|
chmod 421 diverto
|
||
|
else
|
||
|
echo Error
|
||
|
exit 1
|
||
|
fi
|