aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Scerba <alex@scerba.org>2025-06-26 14:40:23 -0500
committerAlex Scerba <alex@scerba.org>2025-06-26 14:40:23 -0500
commit928caf91c6bc0e364c6853574975b59b244a6088 (patch)
treee4c99e9f9b4ba375c43feb3f3a6ad2f54c67799b
parent98ffafebebbaa479d30700c6476aaaf2c3c415e8 (diff)
change 'magick' to 'convert' for main machine usage
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 63867e3..27cd776 100644
--- a/README.md
+++ b/README.md
@@ -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