diff --git a/pages/sunos/prstat.md b/pages/sunos/prstat.md index 1ceab064f6..3f481821a7 100644 --- a/pages/sunos/prstat.md +++ b/pages/sunos/prstat.md @@ -21,4 +21,4 @@ - Print out a list of top 5 CPU using processes every second: -`prstat -c -n 5 -s cpu 1` +`prstat -c -n {{5}} -s cpu {{1}}` diff --git a/pages/sunos/snoop.md b/pages/sunos/snoop.md index c71c2a5bcc..74be3913c0 100644 --- a/pages/sunos/snoop.md +++ b/pages/sunos/snoop.md @@ -10,11 +10,11 @@ - Save captured packets in a file instead of displaying them: -`snoop -o {{filename}}` +`snoop -o {{path/to/file}}` - Display verbose protocol layer summary of packets from a file: -`snoop -V -i {{filename}}` +`snoop -V -i {{path/to/file}}` - Capture network packets that come from a hostname and go to a given port: @@ -22,4 +22,4 @@ - Capture and show a hex-dump of network packets exchanged between two IP addresses: -`snoop -x0 -p4 {{ip_address_1}} {{ip_address_2}}` +`snoop -x0 -p4 {{ip1}} {{ip2}}` diff --git a/pages/sunos/svccfg.md b/pages/sunos/svccfg.md index 5fea761b79..cd820c0b63 100644 --- a/pages/sunos/svccfg.md +++ b/pages/sunos/svccfg.md @@ -5,12 +5,12 @@ - Validate configuration file: -`svccfg validate {{smf.xml}}` +`svccfg validate {{path/to/smf_file.xml}}` - Export service configurations to file: -`svccfg export {{servicename}} > {{smf.xml}}` +`svccfg export {{servicename}} > {{path/to/smf_file.xml}}` - Import/update service configurations from file: -`svccfg import {{smf.xml}}` +`svccfg import {{path/to/smf_file.xml}}`