From ec121dbdbfe3660a7d8f20f7cf758bdd01cdbf06 Mon Sep 17 00:00:00 2001 From: oblique Date: Sun, 17 Nov 2013 13:43:50 +0200 Subject: [PATCH] update README.md file --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 3e32ec0..aa257b1 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,22 @@ ./create_ap wlan0 eth0 MyAccessPoint +OR + + echo -e "MyAccessPoint\n" | ./create_ap wlan0 eth0 + ### WPA + WPA2 passphrase: ./create_ap wlan0 eth0 MyAccessPoint MyPassPhrase +OR + + echo -e "MyAccessPoint\nMyPassPhrase" | ./create_ap wlan0 eth0 + ### AP without Internet sharing: ./create_ap -n wlan0 MyAccessPoint MyPassPhrase + +OR + + echo -e "MyAccessPoint\nMyPassPhrase" | ./create_ap -n wlan0