find /home/user/files/ -name 'myfile.sh' -exec chmod 755 {} \;
Wednesday, September 22, 2010
Use 'find' to recursively chmod files
another 'find' quickie...
Thursday, September 16, 2010
Capitalize the first letter of a sentence with MYSQL
UPDATE `categories` SET category_name = CONCAT(UCASE(SUBSTRING(`category_name`, 1,1)),LOWER(SUBSTRING(`category_name`, 2)))
Subscribe to:
Posts (Atom)