Error for convert command in command line

后端 未结 4 518
Happy的楠姐
Happy的楠姐 2021-02-01 03:13

I have a bash shell script as below.

#!/bin/bash

SIZES=("512" "1024" "2048")

for i in ${!SIZES[*]}
do
    SIZE=${SIZES[$i]}
    ec         


        
4条回答
  •  不思量自难忘°
    2021-02-01 04:11

    You can also make it with help of Homebrew - which is quite nice and popular package manager

    1. To Install homeBrew past in your terminal

      ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

    2. To install imagemagick past in the terminal

      brew install imagemagick

提交回复
热议问题