From 57869da7d1b94735ee9bc1d57aa000daa71d1fcc Mon Sep 17 00:00:00 2001 From: SkyperTHC <5938498+SkyperTHC@users.noreply.github.com> Date: Sat, 3 Sep 2022 08:10:13 +0100 Subject: [PATCH] Update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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 & ```