47
22
Coming from Mac OS X, you can type:
$ open yourfilehere.txt
and your file will open just as if you had opened it from Finder.
On Windows, one can type:
> start yourfilehere.txt
and it will open just as if you had opened it from Explorer.
On Ubuntu, I'd like to be able to open files in the same manner in GNOME. What's the command?
I just saw that On Windows, this is the
– CodyChan – 2017-09-20T08:39:03.570start
program. On OS X, this is theopen
program. On Ubuntu Linux, this is thesee
program. in book automate-the-boring-stuff-with-python, but I didn't get any info aboutsee
command from Google.1In little related I found this little gem to open Finder in a certain path (not current path necessarily): open -a Finder . or open -a Finder /your/path/here – Mikko Ohtamaa – 2012-02-10T19:56:45.650