From a84c5590cd7f4f8a6d2a1d352cc238dd3a7d0a25 Mon Sep 17 00:00:00 2001 From: Knackii <34623058+Knackii@users.noreply.github.com> Date: Sat, 12 Nov 2022 13:14:27 +0100 Subject: [PATCH] Add new questions (#5121) * Remove Q61 and Q77, and new question Q61 duplicate of Q16. Q77 duplicate of Q23. Also fixed typo in Q40 * Update number question C programming language * Add 1 new question Linux * add reference for new question * Fix reference Q108 --- linux/linux-quiz.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/linux/linux-quiz.md b/linux/linux-quiz.md index 699e1ff9c6..0518953b07 100644 --- a/linux/linux-quiz.md +++ b/linux/linux-quiz.md @@ -882,3 +882,12 @@ if [[ $FILE == $GLOB ]] ;then - [x] Pine - [ ] Procmail - [ ] The MUA + +#### Q108. In BASH parsing, which expansion happens first? + +- [x] brace expansion +- [ ] variable expansion +- [ ] filename expansion (globbing) +- [ ] word splitting + +[Reference](https://stackoverflow.com/questions/54160869/in-what-order-does-bash-parser-escape-characters-and-split-words-tokens-within-c#:~:text=Expansions%20are%20performed%2C%20in%20order,Tilde%20expansion%2C%20e.g.%20~root%20.)