blob: 50e0d87addbdd120f69a4862ce74e3ffd509a4c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
commit 4d2e9c98b5b886d80fb7396aef89ca50b0d5fcfe
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Sun Sep 27 23:33:29 2009 +0200
Use #!/bin/bash instead of #!/bin/sh
The script makes big use of bashisms.
diff --git a/sutils/MAKEDEV.sh b/sutils/MAKEDEV.sh
index c9bd209..260e93b 100644
--- a/sutils/MAKEDEV.sh
+++ b/sutils/MAKEDEV.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
#
# Make standard devices
#
|