You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
85B

  1. for f in "$@"; do
  2. f2=${f/.png/@2x.png}
  3. mv $f $f2
  4. convert $f2 -resize 50% $f
  5. done