diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-11-10 12:59:40 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-11-10 13:03:33 +0000 |
commit | dcae88c00962729db2978ab41007683394bbbfa9 (patch) | |
tree | c21bc696b8768627f22c5b2857fbb1dd76957071 /tests/misc | |
parent | 41a4c714e49e26f290e0c2e27a61d9086e633b52 (diff) | |
download | coreutils-dcae88c00962729db2978ab41007683394bbbfa9.tar.xz |
maint: use standard spacing in shebang line in tests
It's better to be consistent even though spacing is insignificant:
http://www.in-ulm.de/~mascheck/various/shebang/#blankrequired
Diffstat (limited to 'tests/misc')
-rwxr-xr-x | tests/misc/help-version.sh | 2 | ||||
-rwxr-xr-x | tests/misc/nice.sh | 2 | ||||
-rwxr-xr-x | tests/misc/stty-row-col.sh | 2 | ||||
-rwxr-xr-x | tests/misc/stty.sh | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/misc/help-version.sh b/tests/misc/help-version.sh index 78150374d..29468edbd 100755 --- a/tests/misc/help-version.sh +++ b/tests/misc/help-version.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Make sure all of these programs work properly # when invoked with --help or --version. diff --git a/tests/misc/nice.sh b/tests/misc/nice.sh index 59316ec5a..7852df75f 100755 --- a/tests/misc/nice.sh +++ b/tests/misc/nice.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Test "nice". # Copyright (C) 2002-2015 Free Software Foundation, Inc. diff --git a/tests/misc/stty-row-col.sh b/tests/misc/stty-row-col.sh index 8c18df661..46fbeb115 100755 --- a/tests/misc/stty-row-col.sh +++ b/tests/misc/stty-row-col.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Test "stty" with rows and columns. # Copyright (C) 1998-2015 Free Software Foundation, Inc. diff --git a/tests/misc/stty.sh b/tests/misc/stty.sh index 217891a1a..3f1304aa6 100755 --- a/tests/misc/stty.sh +++ b/tests/misc/stty.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Make sure stty can parse most of its options. # Copyright (C) 1998-2015 Free Software Foundation, Inc. |