Archive for March, 2007

FTP in a Plesk stylee

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 as tricky as I made it! If you create a new OS user giving them the same user ID number [...]

Feeling Bashful

Feeling Bashful

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 string grep -lir “some text” * The -l switch outputs only the names of files in which the text occurs [...]