كيفية البحث في ملف
منذ 5 أعوام
The grep command syntax in Linux
How to use the grep command for searching in a file.
Verwendung des Befehls grep zum Suchen in einer Datei.
كيفية استخدام الأمر grep للبحث في ملف.
grep 'word' filename
grep 'word' file1 file2 file3
grep 'string1 string2' filename
cat otherfile | grep 'something'
command | grep 'something'
command option1 | grep 'data'
grep --color 'data' filename
more filename | grep something
grep -i "Tomas" /etc/passwd
cat /etc/passwd | grep -i "boo"
grep -r "192.168.1.5" /etc/
grep -R "192.168.1.5" /etc/
Author
1 1504