Skip to content

Commit 15ce908

Browse files
committed
doc: Update support feature statement
1 parent 603b116 commit 15ce908

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ https://starchart.cc/LeaYeh/minishell
7070
| | | | Support `ASSIGNMENT_WORD` `=` for variable assignments. ||
7171
| Frontend | Parser | Syntax Analysis | Analyze syntax of token list and report syntax errors based on Shift-Reduce algorithm with predefined grammar rules and then output as command table list. ||
7272
| Frontend | Expander | Brace Expansion | Perform brace expansion to generate multiple strings based on expressions enclosed in braces `{}`. ||
73-
| | | Tilde Expansion | Perform tilde expansion to replace `~` with the current user's home directory path. | |
73+
| | | Tilde Expansion | Perform tilde expansion to replace `~` with the current user's home directory path. | 🛇 |
7474
| | | Parameter Expansion | Perform parameter expansion to replace variables and special parameters in a string. ||
75-
| | | Command Substitution | Perform command substitution to replace command output in a string. | |
76-
| | | Arithmetic Expansion | Perform arithmetic expansion to evaluate mathematical expressions enclosed in `$(())`. | |
77-
| | | Process Substitution | Perform process substitution to use the output of a command as a file or input to another command. | |
75+
| | | Command Substitution | Perform command substitution to replace command output in a string. | 🛇 |
76+
| | | Arithmetic Expansion | Perform arithmetic expansion to evaluate mathematical expressions enclosed in `$(())`. | 🛇 |
77+
| | | Process Substitution | Perform process substitution to use the output of a command as a file or input to another command. | 🛇 |
7878
| | | Word Splitting | Perform word splitting to split a string into separate words based on spaces, tabs, and newlines. ||
79-
| | | Wildcard Expansion | Perform filename expansion (globbing) to generate filenames matching a specified pattern. | |
79+
| | | Wildcard Expansion | Perform filename expansion (globbing) to generate filenames matching a specified pattern. | |
8080
| | | Quote Removal | Remove quotes from strings to interpret them as literal values. ||
8181
| Backend | Builtins | cd | Implement `cd` with only a relative or absolute path. ||
8282
| | | echo | Implement `echo` with option `-n`. ||

0 commit comments

Comments
 (0)