मैन पेज खोलें और एक ही कमांड में स्ट्रिंग खोजें


15

करने के बजाय man chmodऔर फिर /a+xchmod मैन पेज में पहले सेक्शन में कूदने के लिए जिसमें उल्लेख है a+x, मैं जानना चाहूंगा कि क्या मैन पेज को किसी विशिष्ट खोज स्ट्रिंग में खोलने का कोई तरीका है, आप vi +string filename.txtvi (m) में कैसे कर सकते हैं )।

जवाबों:


20

इस ट्रिक को आजमाएं:

man chmod | less +'/a\+x'

या

man chmod | more +'/a\+x'

+संकेत से पहले बैकस्लैश के साथ क्योंकि उसके बाद जो आता है /वह एक विस्तारित नियमित अभिव्यक्ति है


2
शांत चाल, मुझे नहीं पता था कि एक!
terdon

लेकिन अब, आप =) करते हैं
गाइल्स क्वेनोट

5
-pस्विच के लिए बल्कि कुरूप की जरूरत है obviates +/...
jasonwryan

2
@ जोसेफआर, नहीं, यह सिर्फ इतना है कि less(और अधिकांश पेजर्स) ऐसा व्यवहार करते हैं catजब इसका आउटपुट टर्मिनल नहीं है।
स्टीफन चेजलस

1
यदि lessआपका आदमी पहले से ही पेजर है, तो आप इसे चलाकर भी ऑप्टिमाइज़ कर सकते हैं LESS=+/searched_string man foobar। यह भी साथ काम करने का फायदा हैman -a
स्टीफन चेज़लस

0

जहां तक ​​मुझे पता है (लेकिन जैसा कि @sputnick बताते हैं, मैं ज्यादा नहीं जानता), लेकिन आप इसे पार्स कर सकते हैं:

man chmod | grep -C 5 'a+x'

मैं एक स्ट्रिंग का उपयोग करने की सलाह दूंगा जो वास्तव में मैन पेज में मौजूद है, हालांकि, कुछ इस प्रकार है:

$ man chmod | grep -C 5 set-user-ID
   traversals.

SETUID AND SETGID BITS
   chmod  clears  the  set-group-ID  bit  of a regular file if the file's group ID does not match the
   user's effective group ID or one of the user's supplementary group IDs, unless the user has appro‐
   priate  privileges.   Additional  restrictions  may cause the set-user-ID and set-group-ID bits of
   MODE or RFILE to be ignored.  This behavior depends on the policy and functionality of the  under‐
   lying chmod system call.  When in doubt, check the underlying system behavior.

   chmod preserves a directory's set-user-ID and set-group-ID bits unless you explicitly specify oth‐
   erwise.  You can set or clear the bits with symbolic modes like u+s and g-s, and you can set  (but
   not clear) the bits with a numeric mode.

RESTRICTED DELETION FLAG OR STICKY BIT
   The  restricted  deletion  flag or sticky bit is a single bit, whose interpretation depends on the

हाँ, मुझे शायद पहले परीक्षण करना चाहिए था यदि a + x उस पृष्ठ में भी है :) यह पहली बात थी जो दिमाग में आई थी।
ग्रेग लेवेंटल
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.