Eu tenho um script que cria alguns arquivos no /tmp
diretório
#!/bin/bash
touch /tmp/file1.txt
touch /tmp/file2.txt
Como posso fazer o script abrir o /tmp/
diretório no Finder com os dois arquivos file1.txt
e file2.txt
selecionados?
Eu sei que posso abrir a pasta com:
open /tmp/
Mas (obviamente) não seleciona os dois arquivos.
Responder1
Veja a página de manual do comando open(1): x-man-page://1/open
Lá você encontrará a -R
opção:
-R Reveals the file(s) in the Finder instead of opening them.