/tmp
我有一個腳本可以在目錄中建立幾個文件
#!/bin/bash
touch /tmp/file1.txt
touch /tmp/file2.txt
如何讓腳本/tmp/
在 Finder 中開啟包含兩個檔案file1.txt
並file2.txt
選擇的目錄?
我知道我可以使用以下命令打開該資料夾:
open /tmp/
但它(顯然)沒有選擇這兩個文件。
答案1
查看 open(1) 指令的手冊頁:x-man-page://1/open
在那裡你會找到這個-R
選項:
-R Reveals the file(s) in the Finder instead of opening them.