Skip to content

Commit

Permalink
Fixup shell
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesLorenz committed May 20, 2024
1 parent a93c819 commit a6e9c00
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/algo/L
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
#!/bin/bash
# give no ids for output since relax only handles one single avalanche
algo/fix l $2 | io/avalanches_bin2human $1
2 changes: 1 addition & 1 deletion src/algo/S
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
#!/bin/bash
algo/fix s $1
2 changes: 1 addition & 1 deletion src/algo/is_recurrent
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

#RETURN_VALUE=./algo/burning_test>/dev/null
./algo/burning_test>/dev/null
Expand Down
2 changes: 1 addition & 1 deletion src/algo/l
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
#!/bin/bash
# give no ids for output since relax only handles one single avalanche
algo/relax l $2 $3 | io/avalanches_bin2human $1
2 changes: 1 addition & 1 deletion src/algo/s
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
#!/bin/bash
algo/relax s $1 $2
2 changes: 1 addition & 1 deletion src/algo/throw
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
#!/bin/bash
math/add $1 | algo/relax s $1 $2
2 changes: 1 addition & 1 deletion src/ca/ca_file
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
FILENAME=$1
shift
./ca/ca "`cat $FILENAME`" $*
2 changes: 1 addition & 1 deletion src/core/diff2
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
#!/bin/bash
math/comb sub "$*" | core/all_equals 0
2 changes: 1 addition & 1 deletion src/io/to_image
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
usage ()
{
echo "Converts a grid into an image known by ImageMagick"
Expand Down
2 changes: 1 addition & 1 deletion src/io/to_ods
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
usage ()
{
echo "Converts a grid into an ODS table file for OpenOffice"
Expand Down
2 changes: 1 addition & 1 deletion src/io/to_pdf
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
#!/bin/bash
cat > $1.csv && oocalc --convert-to pdf $1.csv
2 changes: 1 addition & 1 deletion src/math/add2
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
#!/bin/bash
math/comb add "$*"
2 changes: 1 addition & 1 deletion src/math/coords
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

usage ()
{
Expand Down
2 changes: 1 addition & 1 deletion src/math/sub2
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
#!/bin/bash
math/comb sub "$*"

0 comments on commit a6e9c00

Please sign in to comment.