From the Terminal, or in a shell file, I know how to open multiple files in a particular app in text edit from the command line and have all of their windows minimized like this:

open -a TextEdit.app ~/Documents/doc1.txt ~/Documents/doc2.txt ~/Documents/doc3.txt
osascript -e 'tell application "TextEdit" to set miniaturized of every window to true'

Is there a command to minimize not all of thow windows but just a particular one of them or equivalently, iterate over minimized windows to restore one by name like ~/Documents/doc1.txt?

有帮助吗?

解决方案

Open the windows you want to minimize first, and the other(s) afterwards.

open -a TextEdit.app ~/Documents/doc2.txt ~/Documents/doc3.txt
osascript -e 'tell application "TextEdit" to set miniaturized of every window to true'
open -a TextEdit.app ~/Documents/doc1.txt 
许可以下: CC-BY-SA归因
不隶属于 apple.stackexchange
scroll top