Skip to content

Commit 0418536

Browse files
committed
Add the "Bash" page.
1 parent 2ec5ad8 commit 0418536

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

content/notes/Bash.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
+++
2+
title = "Bash"
3+
+++
4+
5+
Bash is an interactive command interpreter and command programming language developed for Unix-like operating systems.
6+
7+
Subpages:
8+
9+
- [Parameter expansion](@/notes/Bash_Parameter_expansion.md)
10+
- [Positional parameters](@/notes/Bash_Positional_parameters.md)

content/notes/Bash_Parameter_expansion.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,7 @@ Here's a brief list of such parameter expansions:
4949
- `k`: like `K`, but keys and values are separate words
5050

5151
See [`man bash`](https://www.man7.org/linux/man-pages/man1/bash.1.html) for more information.
52+
53+
## See also
54+
55+
- [Bash](@/notes/Bash.md)

content/notes/Bash_Positional_parameters.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,7 @@ function handle_args()
4545
done
4646
}
4747
```
48+
49+
## See also
50+
51+
- [Bash](@/notes/Bash.md)

0 commit comments

Comments
 (0)