Admin, Bash, Direct Admin, IT Help Desk, Linux, Linux CLI
There easy way to find large folders on Linux is to use du command. See the example commands: sudo find / -xdev -type f -size +1000M -exec du -sh {} \; The above command list all files larger than 1000M with it size. du -h -x / | sort -h -r | head -10 This command...
Bash, Laragon, Windows 10 ENV, WordPress
This post was inspired by post of other user. In result I have created a bash script which can be used to automate creation of wordpress site on development machine. If you like to play with bash and automate your life this is something for you. To generate a website...