diff --git a/README.md b/README.md index b8e2123..2728f62 100644 --- a/README.md +++ b/README.md @@ -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 |Tells Pamela to say something| +|date-show ["command"]|Show a time and date window.| diff --git a/src/newbash b/src/newbash index 6b8568a..ca36360 100755 --- a/src/newbash +++ b/src/newbash @@ -11,4 +11,4 @@ echo "#!/bin/bash" > "$1" echo "" >> "$1" echo "$2" >> "$1" -chmod +x "$1" +chmod u+x "$1" diff --git a/src/newsh b/src/newsh index 2231967..e2312e1 100755 --- a/src/newsh +++ b/src/newsh @@ -11,4 +11,4 @@ echo "#!/bin/sh" > "$1" echo "" >> "$1" echo "$2" >> "$1" -chmod +x "$1" +chmod u+x "$1" diff --git a/src/pam-say b/src/pam-say deleted file mode 100755 index 3848265..0000000 --- a/src/pam-say +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -_command="echo ""$*"" | festival --tts" -ssh pamela "$_command" - -