Skip to content

Commit

Permalink
corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
freddieventura committed Oct 7, 2023
1 parent d348d74 commit 4db5fa9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _posts/2023-10-07-porting-program-directives-shell-scripts.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ As you can see, you need to be careful with what the shell can interpret, in ter
Doing a 'man bash' checking for different expansions and etc... having an in-depth understanding of those rules would be the ultimate objective giving you a clear understanding on what conflicts may arise on such a "translation", but in a nutshell It is important to pay attention to the following characters.

- Quotes : Single (') and double (")
- Escape characters: Such as the backslash ('\')
- Escape characters: Such as the backslash ('\\')
- Semicolon (;)
- Ampersand (&)
- Pipe (|)
- Pipe (\|)
- Dollar Sign ($)
- Parentheses (()) and Curly Braces ({})
- Brackets ([]) and Wildcards (*, ?, [])
- Brackets ([]) and Wildcards (\*, ?, [])
- Whitespaces
- Quotes in Quotes:
- Hashtags for Comments #.
Expand Down

0 comments on commit 4db5fa9

Please sign in to comment.