Difference between revisions of "MTR - Formated Command"

From wiki.1001solutions.net
(Created page with "Category:Post-It = Command = <nowiki> mtr -o "SDRL NBAW VG JMXI" --mpls <TARGET> </nowiki> ----")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
[[Category:Post-It]]
 
[[Category:Post-It]]
  
= Command =
+
== Command ==
  
 
  <nowiki>
 
  <nowiki>
mtr -o "SDRL  NBAW  VG  JMXI" --mpls <TARGET>
+
mtr -o "SDRL  NBAW  VG  JMXI" --mpls <TARGET></nowiki>
</nowiki>
+
 
 +
 
 +
 
 +
== Script Example ==
 +
 
 +
<nowiki>
 +
#!/bin/bash
 +
#
 +
# mtr.sh script
 +
# USAGE : root#~: ./mtr.sh <TARGET>
 +
 
 +
mtr -o "SDRL  NBAW  VG  JMXI" --mpls $1</nowiki>
  
  
  
 
----
 
----

Latest revision as of 10:52, 11 March 2024


Command

mtr -o "SDRL  NBAW  VG  JMXI" --mpls <TARGET>


Script Example

#!/bin/bash
#
# mtr.sh script
# USAGE : root#~: ./mtr.sh <TARGET> 

mtr -o "SDRL  NBAW  VG  JMXI" --mpls $1