Estoy intentando crear un script para extraer una lista de datos de la columna A en el documento 1, y luego usar las columnas A & B en el documento 2 como datos múltiples de búsqueda / reemplazo.
Todo funciona hasta el punto de obtener los datos requeridos, pero no entiendo cómo escribir el script para realizar la búsqueda / reemplazo. Quiero que se ejecute en toda la lista desde el documento 1 al hacer referencia a la primera fila de la lista de búsqueda / reemplazo (documento 2), y luego hacer lo mismo con la fila 2, y así sucesivamente hasta que llegue al final del documento 2.
Verás cómo he intentado ejecutar esto en la parte inferior, pero no entiendo cómo debería escribirse esto. Realmente apreciaría algunos consejos aquí si alguien quisiera ayudarme.
-- set paths
tell application "Finder"
set folderpath to folder "Macintosh HD:Users:Will:Desktop:Data1"
set filePath to first file of folderpath as alias
set folderpath2 to folder "Macintosh HD:Users:Will:Desktop:Data2"
set filePath2 to first file of folderpath2 as alias
end tell
-- grab data
set fileRefr to (open for access filePath)
set theText to (read fileRefr)
set textList to paragraphs of theText
close access fileRefr
set uniqueList to {}
set dataList to every paragraph of (do shell script "cat " & quoted form of POSIX path of filePath & " | awk -F'" & tab & "' 'BEGIN{getline}{print $1}'")
set uniqueList to uniqueList & dataList
set fileRefr2 to (open for access filePath2)
set theText2 to (read fileRefr2)
set textList2 to paragraphs of theText2
close access fileRefr2
set theCNT to (count of textList2) - 1
set uniqueList2 to {}
set dataList2 to every paragraph of (do shell script "cat " & quoted form of POSIX path of filePath2 & " | awk -F'" & tab & "' 'BEGIN{getline}{print $1}'")
set uniqueList2 to uniqueList2 & dataList2
set uniqueList3 to {}
set dataList3 to every paragraph of (do shell script "cat " & quoted form of POSIX path of filePath2 & " | awk -F'" & tab & "' 'BEGIN{getline}{print $2}'")
set uniqueList3 to uniqueList3 & dataList3
-- find/replace data
repeat with i from 1 to count theCNT
set uniqueList to (replace_chars of uniqueList from (item i of uniqueList2) to (item i of uniqueList3))
end repeat