File tree Expand file tree Collapse file tree 3 files changed +584
-13
lines changed Expand file tree Collapse file tree 3 files changed +584
-13
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ This page lists the features and syntax supported by **Bunster**. you must consi
33as work-in-progress and as not-yet-supported.
44
55
6- - Simple commands
7- - Redirections
8- - Passing shell parameters as environment to commands
9- - Pipelines
10- - Conditional Execution (` command || command2 && command3 ` )
6+ - [ Simple commands] ( https://www.gnu.org/software/bash/manual/bash.html#Simple-Commands )
7+ - [ Redirections] ( https://www.gnu.org/software/bash/manual/bash.html#Redirections )
8+ - [ Passing shell parameters as environment to commands] ( https://www.gnu.org/software/bash/manual/bash.html#Environment )
9+ - [ Pipelines] ( https://www.gnu.org/software/bash/manual/bash.html#Pipelines )
10+ - [ Conditional Execution] ( https://www.gnu.org/software/bash/manual/bash.html#Lists )
11+ - [ Group Compound] ( https://www.gnu.org/software/bash/manual/bash.html#index-_007b )
Original file line number Diff line number Diff line change @@ -9,19 +9,14 @@ echo "Hello World"
99To build this script, simply run:
1010
1111``` shell
12-
13- bunster build script.sh -o ./bin/my-program
14-
12+ bunster build script.sh -o my-program
1513```
1614
17- This will create an executable program named ` my-program ` in the ` ./bin ` directory.
15+ This will create an executable program named ` my-program ` in the current working directory.
1816
1917Now you can run it
2018
2119``` shell
22-
23- ./bin/my-program
24-
25-
20+ ./my-program
2621# Output: Hello World
2722```
You can’t perform that action at this time.
0 commit comments