LAMP
FTP in a Plesk stylee
I found myself wanting to create an extra FTP user for one of my Plesk machines that would only have access to a subdirectory of one of the machine’s domains. It turns out this isn’t Read more
I found myself wanting to create an extra FTP user for one of my Plesk machines that would only have access to a subdirectory of one of the machine’s domains. It turns out this isn’t Read more
Counting files in a folder ls -1 | wc -l Deleting a lot of files when plain ol rm won’t work find . -name ‘prefix*’ -print0 | xargs -0 rm Find files containing a text Read more