Kolay cevap şudur: IOS ile NX-OS arasında bire bir eşleme için şöyle görünür:
İOS : show run | inc (interface Vlan)|(ip address)
NX-OS : show run | inc 'interface Vlan|ip address'
Orijinalde ekstra parensleri bıraktığınızda bunun daha anlamlı olduğunu unutmayın:
show run | inc (interface Vlan|ip address)
Bu örnekteki anahtar, NX-OS için parenlerin tırnak işaretleri ile değiştirilmesidir.
Ayrıca çift tırnak işareti kullanabilirsiniz ""
.
NX-OS Linux tabanlıdır [1] ve * nix benzeri normal ifade motoru kullanır. Komutlar İngilizce ifadeler ile standart normal ifade deyimleri arasında gariptir.
Örneğin, egrep -v
bash'da ne olurdu egrep ignore-case
Komut satırında şöyle görünecektir
show run | egrep ignore-case vpc
veya
show run | inc ignore-case vpc
Yeni normal ifade özelliklerinin ayrıntısına (ve gücüne) bir örnek:
show run | egrep ignore-case vpc | egrep invert-match ignore-case peer
Bu bir bash kabuğuna eşdeğerdir egrep -i vpc <input> | egrep -vi peer
Bununla birlikte, burada mevcut IOS'dan çok daha fazla güç ve esneklik var.
Temel Cisco belgeleri burada *, ancak komut satırı ?
özelliğiniz size hızlı hatırlatmalar sağlıyor:
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
Daha sonra, Temel Bilgiler Yapılandırma Kılavuzu'nu ( Komut Satırı Arayüzünü Anlama bölümündeki Normal İfade bölümünü içeren ) bulmak için "eğlenceli" (başka ne?) Aramak isteyeceksiniz .
Paskalya yumurtası? Bölüm numaraları bu doküman için ikilidir.
Eğer docs yürümek, bir sürü daha fazlasını içeren komut satırı araçları, nix benzeri * bulacaksınız cut
, tr
ve 7K üzerinde, sed
ve diğer bazı güzellikler.
Ayrıca, 'içerme' eşleşmelerini prev
ve next
değiştiricileri gözden kaçırmayın .
Bu, foo içeren satırların yanı sıra içerik için üç satır önce ve iki satır sonra olacaktır:
show run | inc foo prev 3 next 2