Skip to content

Commit

Permalink
Update bash.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JV-conseil committed Jan 5, 2024
1 parent 05f03c4 commit 4e049a8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions bash.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ title: Bash
- [Extract a substring from a string](#extract-a-substring-from-a-string)
- [Extract a value from a file](#extract-a-value-from-a-file)
- [Read a JSON stream](#read-a-json-stream)
- [Create Symbolic Links πŸ”—](#create-symbolic-links-)
- [Tools for Shell Script Development βš™οΈ](#tools-for-shell-script-development-️)
- [Features πŸ”Ž](#features-)
- [Coding Guidelines, Style, Linter ✍️](#coding-guidelines-style-linter-️)
Expand Down Expand Up @@ -118,6 +119,16 @@ will output

_src πŸ‘‰ [jq/manual](https://stedolan.github.io/jq/manual/)_

## Create Symbolic Links πŸ”—

`ln` is a command-line utility for creating links between files. By default, the ln command creates hard links. To create a symbolic link, use the -s (--symbolic) option.

The ln command syntax for creating symbolic links is as follows: `ln -s [OPTIONS] FILE LINK`

e.g.: `ln -s source_file symbolic_link`

_src πŸ‘‰ [Create Symbolic Links](https://linuxize.com/post/how-to-create-symbolic-links-in-linux-using-the-ln-command/#how-to-use-the-ln-command)_

## Tools for Shell Script Development βš™οΈ

| <img src="https://timonwong.gallerycdn.vsassets.io/extensions/timonwong/shellcheck/0.29.4/1676233151659/Microsoft.VisualStudio.Services.Icons.Default" height="50" style="margin:.5rem"> | [ShellCheck](https://marketplace.visualstudio.com/items?itemName=timonwong.shellcheck)<br>Integrates [ShellCheck](https://github.com/koalaman/shellcheck) into VS Code, a linter for Shell scripts |
Expand Down

0 comments on commit 4e049a8

Please sign in to comment.