Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Commit 161ed8b

Browse files
committed
Replace #! /bin/bash with #!/usr/bin/env bash
1 parent d834203 commit 161ed8b

7 files changed

+7
-7
lines changed

antifmt.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /bin/bash
1+
#!/usr/bin/env bash
22

33
# repair all the creative stuff students submit
44
# - unzip all compressed files/dirs (w/o directory structure)

dupes.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /bin/bash
1+
#!/usr/bin/env bash
22

33
MYDIR="${0%/*}"
44
DIFF="diff --ignore-all-space --minimal --side-by-side --width=160 --left-column"

hak3.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /bin/bash
1+
#!/usr/bin/env bash
22

33
# partition ALL SUBDIRECTORIES in equal parts into the folders given as arguments
44

mail_TAs.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /bin/bash
1+
#!/usr/bin/env bash
22

33
if [! -f config.sh]; then
44
echo "Expecting configuration in config.sh. Refer to the template file config_template.sh"

rgrade.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Start grading in a randomly chosen, ungraded submission folder
44

verdeel.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /bin/bash
1+
#!/usr/bin/env bash
22

33
# TODO:
44
# - distribution of csv files to TA's is not currently handled

wizard.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /bin/bash
1+
#!/usr/bin/env bash
22

33
cat<<EOF
44
_________________________________

0 commit comments

Comments
 (0)