diff options
author | Alex Scerba <alex@scerba.org> | 2024-09-06 10:02:48 -0400 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-09-06 10:02:48 -0400 |
commit | c7679e08ef3331824ec1db21fce9a5ab9ac9fafe (patch) | |
tree | 9e7c07c4628206a50d78c4c9352b8218cfa19160 | |
parent | 9188d93ab3525cbb7ed5300d8048dfaaef5e4635 (diff) |
Replace depreciated 'convert' command
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,5 +18,5 @@ This is my personal website that takes the place of [alexscerba.org](https://ale [] Image scraping and gallery: Scrape and agregate all images from the site into a lazy-loading image gallery.
## Useful Commands
-* convert image.jpg -resize 1000x1000 image_1000.jpg
-* for file in $(ls -1 | sed 's/\.[^.]*$//'); do convert "$file.jpg" -resize 1000x1000 "$(echo $file)_1000.jpg"; done
\ No newline at end of file +* 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 |