इसका आसान उत्तर यह है कि, IOS से NX-OS के लिए एक-से-एक मैपिंग के लिए, यह इस तरह दिखता है:
IOS : show run | inc (interface Vlan)|(ip address)
NX-OS : show run | inc 'interface Vlan|ip address'
ध्यान दें कि जब आप मूल में अतिरिक्त परनों को छोड़ते हैं तो यह अधिक समझ में आता है:
show run | inc (interface Vlan|ip address)
इस उदाहरण में कुंजी यह है कि NX-OS के लिए, Parens को उद्धरण चिह्नों से बदल दिया जाता है।
आप दोहरे उद्धरण चिह्नों का भी उपयोग कर सकते हैं ""
।
एनएक्स-ओएस लिनक्स-आधारित [1] है , और एक * निक्स-जैसे नियमित अभिव्यक्ति इंजन का उपयोग करता है। अंग्रेजी विषम और मानक रेगेक्स मुहावरों के बीच कमांड विषम हैं।
उदाहरण के लिए, egrep -v
बैश में क्या होगा जैसा दिखेगा egrep ignore-case
कमांड लाइन पर यह कुछ ऐसा दिखेगा
show run | egrep ignore-case vpc
या
show run | inc ignore-case vpc
नई रेगेक्स सुविधाओं की क्रियाशीलता (और शक्ति) का एक उदाहरण:
show run | egrep ignore-case vpc | egrep invert-match ignore-case peer
यह बैश-शेल के बराबर होगा egrep -i vpc <input> | egrep -vi peer
फिर भी, वर्तमान IOS की तुलना में यहां काफी अधिक शक्ति और लचीलापन है।
मूल सिस्को प्रलेखन यहाँ है *, लेकिन आपकी कमांड-लाइन ?
सुविधा आपको त्वरित अनुस्मारक देती है:
5k# show run | ?
cut Print selected parts of lines.
diff Show difference between current and previous invocation (creates temp files: remove them
with 'diff-clean' command and dont use it on commands with big outputs, like 'show
tech'!)
egrep Egrep - print lines matching a pattern
grep Grep - print lines matching a pattern
head Display first lines
human Output in human format
last Display last lines
less Filter for paging
no-more Turn-off pagination for command output
section Show lines that include the pattern as well as the subsequent lines that are more
indented than matching line
sort Stream Sorter
tr Translate, squeeze, and/or delete characters
uniq Discard all but one of successive identical lines
vsh The shell that understands cli command
wc Count words, lines, characters
xml Output in xml format (according to .xsd definitions)
begin Begin with the line that matches
count Count number of lines
end End with the line that matches
exclude Exclude lines that match
include Include lines that match
5k# show run | inc ?
WORD Search for the expression
ignore-case Ignore case difference when comparing strings
line-exp Print only lines where the match is a whole line
5k# show run | egrep ?
WORD Search for the expression
count Print a total count of matching lines only
ignore-case Ignore case difference when comparing strings
invert-match Print only lines that contain no matches for <expr>
line-exp Print only lines where the match is a whole line
line-number Print each match preceded by its line number
next Print <num> lines of context after every matching line
prev Print <num> lines of context before every matching line
word-exp Print only lines where the match is a complete word
तब आप फंडामेंटल्स कॉन्फ़िगरेशन गाइड (जिसमें कमांड-लाइन इंटरफेस चैप्टर अंडरस्टैंडिंग में रेगुलर एक्सप्रेशन सेक्शन शामिल हैं) को खोजने के लिए "मज़ा" (और क्या?) खोजना चाहते हैं ।
ईस्टर अंडा? इस डॉक के लिए अध्याय संख्या बाइनरी में हैं।
आप डॉक्स के माध्यम से चलना है, तो आप एक बहुत अधिक * सहित कमांड लाइन उपकरण, nix की तरह मिल जाएगा cut
, tr
और 7K पर, sed
और कुछ अन्य उपहार।
इसके अलावा, 'शामिल' मैचों के लिए prev
और next
संशोधक की अनदेखी न करें ।
यह foo वाली लाइनों को, साथ ही संदर्भ के लिए तीन लाइनों को पहले और दो लाइनों को हड़प लेगा:
show run | inc foo prev 3 next 2