0

Is it possible to specify what action (run/open/edit) I want to execute on a given file in the command line window? If so how?

Piotr Dobrogost
  • 5,402
  • 14
  • 57
  • 78

2 Answers2

0

Windows

Run/Open: file or start file
Edit: notepad file

Linux (Gnome environment)

Run: ./file.
Edit: gedit file (for text files)
Open: gnome-run file

Replace file by the filename.

Factor Mystic
  • 12,647
  • 7
  • 47
  • 53
RobinJ
  • 960
  • 5
  • 12
0

Use the DOS command assoc to modify the file extension associations. Do

assoc /?

to see the help for it.

e40
  • 1,318
  • 9
  • 10