Skip to content

Commit

Permalink
chore: added one linux question (#721)
Browse files Browse the repository at this point in the history
* added one linux question

* Update src/data/linux-quiz.ts

Co-authored-by: Jessica Wilkins  <[email protected]>

---------

Co-authored-by: Jessica Wilkins <[email protected]>
  • Loading branch information
Dunking3022 and jdwilkin4 authored Oct 2, 2023
1 parent d7d516a commit e000461
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/data/linux-quiz.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
const linuxQuiz = [
{
Question: "In Linux, which command option is used to perform a case-insensitive search when searching for text patterns?",
Answer: "grep -i",
Distractor1: "grep -c",
Distractor2: "grep -v",
Distractor3: "grep -s",
Explanation:
"The grep -i command is used to perform a case-insensitive search, allowing you to find text patterns ignoring the case.",
Link: "https://man7.org/linux/man-pages/man1/grep.1.html"
},
{
Question: "In Linux, which command is used to set limits on a file size?",
Answer: "ulimit",
Expand Down

0 comments on commit e000461

Please sign in to comment.