كيفية الحصول على معلومات مختصرة حول أوامر أو وظائف في لينكس
منذ 5 أعوام
Linux whatis Command
Whatis command is helpful to get brief information about Linux commands or functions.
Der Befehl Whatis ist hilfreich, um kurze Informationen zu Linux-Befehlen oder -Funktionen zu erhalten.
أمر Whatis مفيد للحصول على معلومات مختصرة حول أوامر أو وظائف Linux.
whatis [-options]
whatis write
Get information from specific sections of man pages using -s option
الحصول على معلومات من أقسام محددة من man pages باستخدام الخيارs-
whatis -s "1","2" open
whatis -s "2" open
Search information through wild-cards using -w option
It will make your search specific as per user’s need.
ستجعل بحثك محددًا حسب حاجة المستخدم.
whatis -w 'ab*'
It displays brief information of Linux commands or functions which start from “ab”.
يعرض معلومات موجزة عن أوامر أو وظائف Linux التي تبدأ من "ab".
whatis -w 'ab?'
It displays brief information of Linux commands or functions which start from “ab” and followed by any single character.
فإنه يعرض معلومات موجزة عن أوامر لينكس أو الوظائف التي تبدأ من "أب" ويليه أي حرف واحد.
Search information through regular expressions using -r option
البحث عن المعلومات من خلال التعابير المنتظمة باستخدام الخيار r-
whatis -r '^ab'
It displays brief information of Linux commands or functions which start from “ab”.
يعرض معلومات موجزة عن أوامر أو وظائف Linux التي تبدأ من "ab".
whatis -r 'ab$'
It displays brief information of Linux commands or functions which ends with “ab”.
يعرض معلومات موجزة عن أوامر أو وظائف Linux والتي تنتهي بـ "ab".
Related media
This tutorial is also available in a quick video format:
Author
1 1970