diff --git a/README.md b/README.md index 835446d..fff2581 100644 --- a/README.md +++ b/README.md @@ -98,9 +98,12 @@ $ id **1.ii. Hide your command** -```sh -(exec -a syslogd nmap -T0 10.0.2.1/24") # Note the '(' brackets ')' -# or starting as a background process: +```shell +(exec -a syslogd nmap -T0 10.0.2.1/24") # Note the brackets '(' and ')' +``` + +Starting a background hidden process: +``` exec -a syslogd nmap -T0 10.0.2.1/24 &>nmap.log & ```