Skip to content

Commit

Permalink
replace #!/bin/bash with #!/usr/bin/env bash
Browse files Browse the repository at this point in the history
  • Loading branch information
Soeren Sonnenburg committed Jul 16, 2012
1 parent 4f42e08 commit 2f6ce63
Show file tree
Hide file tree
Showing 25 changed files with 25 additions and 26 deletions.
3 changes: 1 addition & 2 deletions applications/asp/galaxy/asp.sh
@@ -1,5 +1,4 @@
#!/bin/bash

#!/usr/bin/env bash

set -e

Expand Down
2 changes: 1 addition & 1 deletion examples/generate_documented.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

static_dirs="cmdline_static elwms_static matlab_and_octave python_static r_static"
modular_dirs="octave_modular python_modular r_modular lua_modular csharp_modular ruby_modular java_modular"
Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/cmdline_static/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

rm -f error.log

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/csharp_modular/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

rm -f error.log

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/java_modular/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

rm -f error.log

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/libshogun/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

rm -f error.log

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/lua_modular/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

rm -f error.log

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/matlab_and_octave/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

MATLAB="$1"

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/octave_modular/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

rm -f error.log

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/python_modular/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

rm -f error.log

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/python_static/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

rm -f error.log

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/r_modular/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

rm -f error.log

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/r_static/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

rm -f error.log

Expand Down
2 changes: 1 addition & 1 deletion examples/undocumented/ruby_modular/check.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

rm -f error.log

Expand Down
2 changes: 1 addition & 1 deletion src/.r-install.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

VERSION=`head -n 3 ../../NEWS | tail -n 1| awk '{ print $5 }'`
DATE=`head -n 1 ../../NEWS | cut -f 1 -d ' '`
Expand Down
2 changes: 1 addition & 1 deletion src/shogun/base/class_list.cpp.py
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env python

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion testsuite/cmdline_static/test_all.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# not implemented yet
exit 0
Expand Down
2 changes: 1 addition & 1 deletion testsuite/libshogun/test_all.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# not implemented yet
exit 0
Expand Down
2 changes: 1 addition & 1 deletion testsuite/matlab_and_octave/test_all.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

DATAPATH='../data'

Expand Down
2 changes: 1 addition & 1 deletion testsuite/matlab_and_octave/test_one.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

path=${1}
interface=${2-octave}
Expand Down
2 changes: 1 addition & 1 deletion testsuite/octave_modular/test_all.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

DATAPATH='../data'

Expand Down
2 changes: 1 addition & 1 deletion testsuite/python_modular/test_all.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

if test -z "$PYTHON"
then
Expand Down
2 changes: 1 addition & 1 deletion testsuite/python_static/test_all.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

DATAPATH='../data'

Expand Down
2 changes: 1 addition & 1 deletion testsuite/r_modular/test_all.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

DATAPATH='../data'

Expand Down
2 changes: 1 addition & 1 deletion testsuite/r_static/test_all.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

DATAPATH='../data'

Expand Down

0 comments on commit 2f6ce63

Please sign in to comment.