8 lines
157 B
Bash
Executable File
8 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
read -p "Usuario del sistema: " myuser
|
|
|
|
chown -R $myuser:www-data bootstrap/cache/ storage/
|
|
chmod -R 775 bootstrap/cache/ storage/
|
|
|
|
echo "Done!"
|