I have this script and this startup error ( parse error: Invalid numeric literal at line 1, column 10 ) , what should I do? P.S. The file is written in bash.
#!/bin/sh
DATA=$(curl -s 'https://api.coinmarketcap.com/v2/ticker/' | jq -r '.data ."1" .quotes .USD .price')
echo $DATA
#printf "%0.0f\n" $DATA