Estoy tratando de obtener la ruta de un solo archivo seleccionado (en Finder), pero los archivos con espacios en el nombre del archivo no funcionan. Sé que tengo que poner las comillas en algún lugar, pero no puedo entenderlo.
Agradecería mucho una pista.
# Get selected files
set strFilePath to {}
tell application "Finder"
repeat with objItem in (get selection)
set end of strFilePath to POSIX path of (objItem as text)
end repeat
end tell
# Use the path to synthesize a shell command and execute it.
do shell script "xattr -d com.apple.quarantine " & strFilePath