Iniciando o Finder no Mac OS X Terminal e destacando arquivos específicos selecionados no Terminal?

2

Eu tenho um script que cria alguns arquivos no diretório /tmp

#!/bin/bash
touch /tmp/file1.txt
touch /tmp/file2.txt

Como posso fazer o script abrir o diretório /tmp/ 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.

    
por Xiao 07.12.2015 / 04:16

1 resposta

3

Veja a man page do comando open (1): x-man-page: // 1 / open

Lá você encontrará a opção -R :

-R  Reveals the file(s) in the Finder instead of opening them.
    
por 16.12.2015 / 15:13