sudo service mariadb stop
convert -define jpeg:size=200x200 source.jpg -thumbnail '100x100>' target.jpg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copy all regular files in the current directory (including subdirectories) | |
| # to the given directory | |
| for x in `find -type f` ; do `cp $x /home/escobar/Pictures`; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $date = strtodate('-2 weeks', $unix_timestamp); |