Skip to content

Commit 1df3345

Browse files
Merge pull request #68 from yassinebenaid/support-group-command
Add missing group tests
2 parents 541c4c7 + 8bbfc81 commit 1df3345

File tree

3 files changed

+584
-13
lines changed

3 files changed

+584
-13
lines changed

docs/supported-features.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ This page lists the features and syntax supported by **Bunster**. you must consi
33
as 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)

docs/usage.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,14 @@ echo "Hello World"
99
To 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

1917
Now you can run it
2018

2119
```shell
22-
23-
./bin/my-program
24-
25-
20+
./my-program
2621
# Output: Hello World
2722
```

0 commit comments

Comments
 (0)