Skip to content

Commit 3ee3232

Browse files
authored
% prompt
1 parent a7be5aa commit 3ee3232

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,38 +26,38 @@ How to configure and install it
2626
Download the osxapp_vers file from GitHub to a folder of your choice.
2727

2828
```bash
29-
curl -Ls https://bit.ly/osxapp_vers > osxapp_vers
29+
% curl -Ls https://bit.ly/osxapp_vers > osxapp_vers
3030
```
3131

3232
Set execute permissions.
3333

3434
```bash
35-
$ chmod +x ./osxapp_vers
35+
% chmod +x ./osxapp_vers
3636
```
3737

3838
In order to bypass a check that prevents the script from investigating an unknown macOS release, you can set the NOCHECK environment variable.
3939

4040
```bash
41-
$ export NOCHECK=1
41+
% export NOCHECK=1
4242
```
4343

4444
In order to see details from the mount actions and additional messages, you can enable debug output by exporting the DEBUG environment variable. Usually there is no need to do that.
4545

4646
```bash
47-
$ export DEBUG=/dev/stdout
47+
% export DEBUG=/dev/stdout
4848
```
49-
49+
5050
If you want to disable debug mode, enter
5151

5252
```bash
53-
$ export DEBUG=
53+
% export DEBUG=
5454
```
5555

5656

5757
How to run it without installing it
5858
-----------------------------------
5959
```
60-
curl -Ls https://bit.ly/osxapp_vers | bash
60+
% curl -Ls https://bit.ly/osxapp_vers | bash
6161
```
6262

6363

@@ -137,7 +137,7 @@ BuildVersion: 22A380
137137
If you specify program parameters, the script prints out product name, product version and build version for each Install OS X .app folder that you have specified.
138138

139139
```bash
140-
$ ./osxapp_vers '/Applications/Install OS X Mavericks.app'
140+
% ./osxapp_vers '/Applications/Install OS X Mavericks.app'
141141

142142
/Applications/Install OS X Mavericks.app:
143143
ProductName: Mac OS X
@@ -148,7 +148,7 @@ BuildVersion: 13E28
148148
If you have created a bootable macOS install media with `createinstallmedia` (that command line tool is provided by Apple as part of the OS X installer starting with Mavericks), you could also find out the version of macOS version that is on the install media by specifying the path to the .app folder.
149149

150150
```bash
151-
./osxapp_vers '/Volumes/Install OS X Mavericks/Install OS X Mavericks.app/'
151+
% ./osxapp_vers '/Volumes/Install OS X Mavericks/Install OS X Mavericks.app/'
152152

153153
/Volumes/Install OS X Mavericks/Install OS X Mavericks.app/:
154154
ProductName: Mac OS X

0 commit comments

Comments
 (0)