File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -141,8 +141,8 @@ rest of the file.
141
141
The *shebang* is the two-character sequence `#!` at the beginning of a
142
142
script. When the script is executable, the operating system will execute
143
143
the script using the executable specified after the shebang. It is
144
- considered a good practice to use `/usr/bin/env < executable> ` rather than using a hard-coded location, since `/usr/bin/env < executable> `
145
- looks for the `< executable> ` program in the system `PATH`,
144
+ considered a good practice to use `/usr/bin/env [ executable] ` rather than using a hard-coded location, since `/usr/bin/env [ executable] `
145
+ looks for the `[ executable] ` program in the system `PATH`,
146
146
```
147
147
148
148
## Text Editor
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ of software and libraries used for following the rest of this user guide.
51
51
## Running "Hello World"
52
52
53
53
The usage of the ` cwltool ` command-line executable is basically
54
- ` cwltool [OPTIONS] < CWL_DOCUMENT> [INPUTS_OBJECT] ` . You can run the
54
+ ` cwltool [OPTIONS] [ CWL_DOCUMENT] [INPUTS_OBJECT] ` . You can run the
55
55
` hello_world.cwl ` workflow without specifying any option:
56
56
57
57
``` {runcmd} cwltool hello_world.cwl
You can’t perform that action at this time.
0 commit comments