notes: remove $* and $@ mention, since we do not have to implement them

This commit is contained in:
Khaïs COLIN 2025-02-11 13:18:12 +01:00
parent b10f2a2ec8
commit e6e108a98d
Signed by: logistic-bot
SSH key fingerprint: SHA256:RlpiqKeXpcPFZZ4y9Ou4xi2M8OhRJovIwDlbCaMsuAo

View file

@ -50,9 +50,6 @@ cf. 3.1.2.3 Double Quotes
Preserves the literal value of all characters within the quotes, with the exception of '$'. Preserves the literal value of all characters within the quotes, with the exception of '$'.
TODO: The special parameters * and @ have special meaning when in double quotes (see Shell Parameter Expansion).
See if we have to handle this
Per the subject: minishell should not interpret unclosed quotes Per the subject: minishell should not interpret unclosed quotes
### Shell Commands ### Shell Commands
@ -269,7 +266,7 @@ by a slash in the pattern.
##### Pattern Matching ##### Pattern Matching
cf. 3.5.8.1 Pattern Matching cf. 3.5.8.1 Pattern Matching
Any character that appears in a pattern, other than the special pattern * [ ] Any character that appears in a pattern, other than the special pattern
characters described below, matches itself. The NUL character may not occur in characters described below, matches itself. The NUL character may not occur in
a pattern. a pattern.
@ -421,8 +418,6 @@ an optional list of arguments, the following actions are taken.
5. The shell waits for the command to complete and collects its exit status. 5. The shell waits for the command to complete and collects its exit status.
TODO remove $@ $* mentions as we don't have to implement that
#### Subshell #### Subshell
cf. 3.7.3 Command Execution Environment cf. 3.7.3 Command Execution Environment