아래 스크립트는 작동하지 않습니다.
cd desktop/quoteUpdate
while true
do
curl-o quotes.txt -s "http://download.finance.yahoo.com/d/quotes.csv?s=goog,aapl&f=sl1"
sed -i '.bak' 's/,/ /g' quotes.txt
echo UPDATED:
date
sleep 10
done
실행 파일을 실행하려고 하면 이 오류가 발생하고 데스크톱 폴더에 txt 파일이 생성되지 않습니다.
UPDATED:
Wed 14 Jan 2015 15:33:30 GMT
/Users/chrisdorman/Desktop/quoteUpdate/runNow: line 4: curl-o: command not found
sed: quotes.txt: No such file or directory
답변1
명령에는 공백이 필요합니다 curl
. curl -o
대신 curl-o
공백을 포함하고 명령을 실행하면 quotes.txt
예상대로 파일이 표시됩니다 .