find . -type f | wc -l
Tuesday, April 8, 2008
Sunday, April 6, 2008
MySQL search and replace
UPDATE table_name SET table_field = REPLACE(table_field,'replace_that','with_this');
Subscribe to:
Comments (Atom)
UPDATE table_name SET table_field = REPLACE(table_field,'replace_that','with_this');