Compare commits

..

No commits in common. "cc594c635c46d04465d7ebbafeb539c14b3a02cb" and "87f04ab56ac1c1044af2efd7d34c9238c0d7113f" have entirely different histories.

4 changed files with 3 additions and 10 deletions

View File

@ -12,6 +12,5 @@ Useful utility scripts.
|---|---|
|newsh ["command"]|Create executable `sh` script. Optionally add `command`.|
|newbash ["command"]|Create executable `bash` script. Optionally add `command`.|
|date-show|Show a time and date window.|
|pam-say <text>|Tells Pamela to say something|
|date-show ["command"]|Show a time and date window.|

View File

@ -11,4 +11,4 @@ echo "#!/bin/bash" > "$1"
echo "" >> "$1"
echo "$2" >> "$1"
chmod +x "$1"
chmod u+x "$1"

View File

@ -11,4 +11,4 @@ echo "#!/bin/sh" > "$1"
echo "" >> "$1"
echo "$2" >> "$1"
chmod +x "$1"
chmod u+x "$1"

View File

@ -1,6 +0,0 @@
#!/bin/sh
_command="echo ""$*"" | festival --tts"
ssh pamela "$_command"