summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-12-05 01:17:57 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-12-05 01:17:57 -0500
commit05dd6877526fc388c6ecbd03e3483636ab2c4e86 (patch)
tree3d60ed9bce377895f611767db189a28240a244cb
parentaa2d5a3a4363ff4f4ca23f4c6716613c4be66ecd (diff)
use /bin/bash, not /bin/sh
-rw-r--r--chardiff.sh2
-rw-r--r--e.sh2
-rw-r--r--emacsmail.sh2
-rw-r--r--hangman-helper.sh2
-rw-r--r--maildups.sh2
-rw-r--r--offlineimap-runner.sh2
-rw-r--r--v-www-browser.sh2
7 files changed, 7 insertions, 7 deletions
diff --git a/chardiff.sh b/chardiff.sh
index 17234ae..7d885b9 100644
--- a/chardiff.sh
+++ b/chardiff.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
file1=${1?usage: chardiff FILE1 FILE2 [FLAGS]}
file2=${2?usage: chardiff FILE1 FILE2 [FLAGS]}
diff --git a/e.sh b/e.sh
index ba97edc..62e18d3 100644
--- a/e.sh
+++ b/e.sh
@@ -1,2 +1,2 @@
-#!/bin/sh
+#!/bin/bash
emacsclient -a "" -e "$@" 2>/dev/null
diff --git a/emacsmail.sh b/emacsmail.sh
index a815997..b05446a 100644
--- a/emacsmail.sh
+++ b/emacsmail.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# emacs-mailto-handler
mailto=$1
diff --git a/hangman-helper.sh b/hangman-helper.sh
index 5e0e138..3d14a7e 100644
--- a/hangman-helper.sh
+++ b/hangman-helper.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
word=$1
not=$2
flag=$3
diff --git a/maildups.sh b/maildups.sh
index 7f39a58..9de7625 100644
--- a/maildups.sh
+++ b/maildups.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# Delete duplicate messages in $1 based on the Message-ID header
maildir=$1
diff --git a/offlineimap-runner.sh b/offlineimap-runner.sh
index e4a6f6c..ae8bf10 100644
--- a/offlineimap-runner.sh
+++ b/offlineimap-runner.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# offlineimap is pretty nifty, and generally does the right thing, and is
# remarkably fault-tolerant, even of it's own code.
diff --git a/v-www-browser.sh b/v-www-browser.sh
index ede59ac..e5ea481 100644
--- a/v-www-browser.sh
+++ b/v-www-browser.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
if [ -n "$DISPLAY" ]; then
x-www-browser "$@"