Tengo un archivo de Dropbox con dos líneas de datos que me gustaría analizar en dos variables. La siguiente función debería tener la lógica correcta pero no parece funcionar:
set versionFile to do shell script ("curl -L 'https://www.dropbox.com/s/5eugzgr1alfgsp9/version.txt?dl=1'")
set lineDelimiter to read versionFile using delimiter return
repeat with oneLine in lineDelimiter
if length of oneLine is greater than 0 then
set variable to oneLine
log "variable: " & variable
end if
end repeat
Error:
error "Can’t make \"1.0.0.2
www.example.com/download-link-here\" into type file." number -1700 from "1.0.0.2
www.example.com/download-link-here" to file
Cualquier ayuda es muy apreciada. Saludos.