summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2019-09-03 20:01:04 -0600
committermo khan <mo@mokhan.ca>2019-09-03 20:01:04 -0600
commit6be22260797400ace8fa1ff36275c49ede9d4f25 (patch)
tree7b1edd91620382afbf3b5f9afe3702db5426721d
parent4d359f8637ff6f62687fce4a2136af9cf54b183b (diff)
run all scripts using bash
-rwxr-xr-xbin/problem-13.sh2
-rwxr-xr-xbin/problem-6.sh2
-rwxr-xr-xbin/problem-7.sh2
3 files changed, 3 insertions, 3 deletions
diff --git a/bin/problem-13.sh b/bin/problem-13.sh
index 9322cd2..1c431b8 100755
--- a/bin/problem-13.sh
+++ b/bin/problem-13.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
banner() {
echo "Use one of the following options:"
diff --git a/bin/problem-6.sh b/bin/problem-6.sh
index e868c90..2eff10b 100755
--- a/bin/problem-6.sh
+++ b/bin/problem-6.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
validate_input() {
invalid=0
diff --git a/bin/problem-7.sh b/bin/problem-7.sh
index 8ec6e0c..8cb15ce 100755
--- a/bin/problem-7.sh
+++ b/bin/problem-7.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
if [ $# -eq 0 ]; then
echo "error: a hostname is required" >&2