Skip to content

Commit

Permalink
Update linux-assessment.md (#3188)
Browse files Browse the repository at this point in the history
* Update linux-assessment.md

* Update linux-assessment.md
  • Loading branch information
SamKomesarook authored Feb 28, 2022
1 parent e0a1f39 commit 26d4275
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions linux/linux-assessment.md
Original file line number Diff line number Diff line change
Expand Up @@ -678,3 +678,14 @@ if [[ $FILE == $GLOB ]] ;then
- [ ] the output from the command line.
- [ ] Nothing, because you cannot redirect from a file (in.txt) to another file (out.txt). You can redirect only from a command to a file.
- [ ] Nothing, The redirect will create a new empty file, but there will not be any output from the cat command to redirect.

### Q83. Using alternation in a POSIX-extended regular expression, which numbers would this pattern match?

```
^(([0-9][0-9]?)|(2[0-9][0-9]))$
```

- [x] 0-99 and 200-299
- [ ] 0-99
- [ ] 200-299
- [ ] 0-299

0 comments on commit 26d4275

Please sign in to comment.