From e577d6fc5ec03d3e822df692abb145a071aa2670 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sun, 12 Jul 2020 11:08:48 +0000 Subject: [PATCH] Create Running the command line programs on macOS --- Running-the-command-line-programs-on-macOS.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Running-the-command-line-programs-on-macOS.md diff --git a/Running-the-command-line-programs-on-macOS.md b/Running-the-command-line-programs-on-macOS.md new file mode 100644 index 0000000..ed1a41a --- /dev/null +++ b/Running-the-command-line-programs-on-macOS.md @@ -0,0 +1,13 @@ +# How can I run the command-line programs on macOS? + +When you're using the MKVToolNix disk image I provide, you can run the command-line programs while the disk image is mounted. All of the programs that are part of the MKVToolNix package are located in the disk image. You can run the programs as follows: + +``` +/Volumes/MKVToolNix-VERSION/MKVToolNix-VERSION.app/Contents/MacOS/PROGRAM ARGUMENTS +``` + +Replace `VERSION`, `PROGRAM` and `ARGUMENTS` as appropriate. For example, if you want to run `mkvinfo` 48.0.0 in summary mode on a file the command-line would be: + +``` +/Volumes/MKVToolNix-48.0.0/MKVToolNix-48.0.0.app/Contents/MacOS/mkvinfo -s yourfile.mkv +``` \ No newline at end of file