Skip to content

Commit

Permalink
Fix shebang coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
pothitos committed Mar 24, 2018
1 parent 416a162 commit 23a052d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion apps/CELAR/verification.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/sh
#!/bin/sh
set -ev
# Set default values, if variables are unset
DATASET=${DATASET-"SCEN06"}
Expand Down
2 changes: 1 addition & 1 deletion apps/Hadoop/progress.plt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env gnuplot
#!/usr/bin/gnuplot

set terminal svg size 1680,844 name "Search_Tree"
set output "progress.svg"
Expand Down
2 changes: 1 addition & 1 deletion apps/Hadoop/rounds.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/sh
#!/bin/sh

: ${HD_HOME?"Please set the envinonment variable HD_HOME, by executing the command e.g. 'export HD_HOME=/usr/local/hd'"}

Expand Down
2 changes: 1 addition & 1 deletion apps/ITC/verification/test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/sh
#!/bin/sh
set -ev
# Set default values, if variables are unset
METHOD=${METHOD-"DBS"}
Expand Down
2 changes: 1 addition & 1 deletion apps/XCSP3/verification/common_functions.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/sh
#!/bin/sh

get_solution_cost() {
grep "^o -\?[[:digit:]]\+$" $SOLUTION | tail -1 | \
Expand Down
2 changes: 1 addition & 1 deletion apps/XCSP3/verification/test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/sh
#!/bin/sh

install_validator() {
# Install XCSP3 Checker
Expand Down
2 changes: 1 addition & 1 deletion apps/verification/test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/sh
#!/bin/sh
set -ev
MEM_CHECK="valgrind -q --leak-check=full --error-exitcode=1"
# Validate 3 Queens empty set of solutions
Expand Down

0 comments on commit 23a052d

Please sign in to comment.