Skip to content

Commit 2bbfaa5

Browse files
Dondoriokanaka
authored andcommitted
Use /usr/bin/env bash shebangs instead of /bin/bash
1 parent c8cab78 commit 2bbfaa5

File tree

96 files changed

+97
-97
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+97
-97
lines changed

impls/ada/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
exec $(dirname $0)/${STEP:-stepA_mal} "${@}"

impls/awk/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
exec awk -O -f $(dirname $0)/${STEP:-stepA_mal}.awk "${@}"

impls/bash/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
exec bash $(dirname $0)/${STEP:-stepA_mal}.sh "${@}"

impls/basic/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
cd $(dirname $0)
33
(echo "(def! -*ARGS*- (list $(for a in "${@}"; do echo -n " \"${a}\""; done)))") > .args.mal
44
case ${basic_MODE:-cbm} in

impls/bbc-basic/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
#! /bin/bash
1+
#!/usr/bin/env bash
22
exec "${BRANDY:-sbrandy}" -size 1024k \
33
-path ../bbc-basic -quit $(dirname $0)/${STEP:-stepA_mal}.bas "${@}"

impls/c/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
exec $(dirname $0)/${STEP:-stepA_mal} "${@}"

impls/chuck/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
regex_chugin=${REGEX_CHUGIN:-/usr/local/lib/chuck/1.5.2.5/RegEx.chug}
33
if [[ ! -f "$regex_chugin" ]]; then
44
echo "Set \$REGEX_CHUGIN to the absolute path of RegEx.chug"; exit 1

impls/clojure/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
export PATH=$PATH:$(dirname $0)/node_modules/.bin
33
STEP=${STEP:-stepA_mal}
44
if [ "${clojure_MODE}" = "cljs" ]; then

impls/coffee/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
exec coffee $(dirname $0)/${STEP:-stepA_mal}.coffee "${@}"

impls/common-lisp/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
exec $(dirname $0)/${STEP:-stepA_mal} "${@}"

0 commit comments

Comments
 (0)