-
show and sort the disk usage
du -sh * | sort -rn
-
Create an user with www-data as group
useradd -mg www-data $USER
-
Add user to sudo
usermod -aG sudo $USER
Useful shell script snippets
some useful shell script commands
An coding monkey who reject all your request
some useful shell script commands
show and sort the disk usage
du -sh * | sort -rn
Create an user with www-data as group
useradd -mg www-data $USER
Add user to sudo
usermod -aG sudo $USER
.env
file.env
TIMEZONE="Asia/Hong_Kong"
config/app.php
to using the TIMEZONE env variable.// "timezone" => "UTC",
"timezone" => env("TIMEZONE", "UTC"), //replace
config/database.php
to using the TIMEZONE env variable.'connections' => [
'mysql' => [
'driver' => 'mysql',
//...
'timezone' => today(env("TIMEZONE", "UTC"))->format("P"), // append this config
]
]