Update OS/bash/Week2/answers.md

This commit is contained in:
Aadit Agrawal 2025-01-10 11:11:15 +05:30
parent fad32afda0
commit 95f65d1e0b

View File

@ -13,7 +13,7 @@ Q3. - `grep -c "ICT" ITStudents.txt`
- `awk 'NR==1 { print toupper($0) } NR>1 { print }' students.txt` - `awk 'NR==1 { print toupper($0) } NR>1 { print }' students.txt`
Q4. - `grep "MIT" * | sed 's/MIT/Manipal Institute of Technology/g' | cut -d':' -f1,2` Q4. - `grep -rl "MIT" . | xargs sed -i 's/MIT/Manipal Institute of Technology/g'`
Q5. - `find . -type f -name '*[0-9]*' -exec wc {} +` Q5. - `find . -type f -name '*[0-9]*' -exec wc {} +`