diff options
author | Alex Scerba <alex@scerba.org> | 2025-06-26 14:40:23 -0500 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2025-06-26 14:40:23 -0500 |
commit | 928caf91c6bc0e364c6853574975b59b244a6088 (patch) | |
tree | e4c99e9f9b4ba375c43feb3f3a6ad2f54c67799b | |
parent | 98ffafebebbaa479d30700c6476aaaf2c3c415e8 (diff) |
change 'magick' to 'convert' for main machine usage
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,4 +28,4 @@ This is my personal website that takes the place of [alexscerba.org](https://ale ## Useful Commands
* magick image.jpg -resize 1000x1000 image_1000.jpg
-* for file in $(ls -1 | sed 's/\.[^.]*$//'); do magick "$file.jpg" -resize 1000x1000 "$(echo $file)_1000.jpg"; done
\ No newline at end of file +* for file in $(ls -1 | sed 's/\.[^.]*$//'); do convert "$file.jpg" -resize 1000x1000 "$(echo $file)_1000.jpg"; done
\ No newline at end of file |