summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2017-09-15 20:33:30 +0300
committerVille Skyttä <ville.skytta@iki.fi>2017-09-15 20:33:30 +0300
commiteab2b69f4cd0fbc81194204b999ab4f27c51cf52 (patch)
tree71298b23e91875235a24bd4cbba45805e212b29a /examples
parente276c17250516ff5a3deca924e35fd3fa68957d9 (diff)
downloadpexpect-git-eab2b69f4cd0fbc81194204b999ab4f27c51cf52.tar.gz
Spelling fixes
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/cgishell.cgi2
-rwxr-xr-xexamples/hive.py12
2 files changed, 7 insertions, 7 deletions
diff --git a/examples/cgishell.cgi b/examples/cgishell.cgi
index 23bef5f..57d8667 100755
--- a/examples/cgishell.cgi
+++ b/examples/cgishell.cgi
@@ -12,7 +12,7 @@ The client web browser needs nothing but CSS and Javascript.
--port : set the local port for the server to listen on
--watch : show the virtual screen after each client request
-This project is probably not the most security concious thing I've ever built.
+This project is probably not the most security conscious thing I've ever built.
This should be considered an experimental tool -- at best.
"""
diff --git a/examples/hive.py b/examples/hive.py
index 00ddbea..1b7bcbf 100755
--- a/examples/hive.py
+++ b/examples/hive.py
@@ -15,7 +15,7 @@ Example:
password:
connecting to host1.example.com - OK
connecting to host2.example.net - OK
- targetting hosts: 192.168.1.104 192.168.1.107
+ targeting hosts: 192.168.1.104 192.168.1.107
CMD (? for help) > uptime
=======================================================================
host1.example.com
@@ -160,7 +160,7 @@ CMD_HELP='''Hive commands are preceded by a colon : (just think of vi).
:resync
This is similar to :sync, but it does not change the mode. It looks for the
- prompt and thus consumes all input from all targetted hosts.
+ prompt and thus consumes all input from all targeted hosts.
:prompt
@@ -170,12 +170,12 @@ CMD_HELP='''Hive commands are preceded by a colon : (just think of vi).
:send my text
- This will send the 'my text' wihtout a line feed to the targetted hosts.
+ This will send the 'my text' wihtout a line feed to the targeted hosts.
This output of the hosts is not automatically synchronized.
:control X
- This will send the given control character to the targetted hosts.
+ This will send the given control character to the targeted hosts.
For example, ":control c" will send ASCII 3.
:exit
@@ -255,7 +255,7 @@ def main ():
synchronous_mode = True
target_hostnames = host_names[:]
- print('targetting hosts:', ' '.join(target_hostnames))
+ print('targeting hosts:', ' '.join(target_hostnames))
while True:
cmd = raw_input('CMD (? for help) > ')
cmd = cmd.strip()
@@ -348,7 +348,7 @@ def main ():
target_hostnames = cmd.split()[1:]
if len(target_hostnames) == 0 or target_hostnames[0] == all:
target_hostnames = host_names[:]
- print('targetting hosts:', ' '.join(target_hostnames))
+ print('targeting hosts:', ' '.join(target_hostnames))
continue
elif cmd == ':exit' or cmd == ':q' or cmd == ':quit':
break