diff options
author | Marko Myllynen <myllynen@redhat.com> | 2016-01-07 10:51:53 +0200 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-01-07 04:03:21 -0500 |
commit | 48d0341cdd41040714f1e9896efe89d49296bc78 (patch) | |
tree | b0b146fbd564e2700487e917a0e4ad5fcd787c2b /posix | |
parent | d7f914848b7d5e9b11bbffd1fecc4659d4acdc2d (diff) | |
download | glibc-48d0341cdd41040714f1e9896efe89d49296bc78.zip glibc-48d0341cdd41040714f1e9896efe89d49296bc78.tar.gz glibc-48d0341cdd41040714f1e9896efe89d49296bc78.tar.bz2 |
Make shebang interpreter directives consistent
Diffstat (limited to 'posix')
-rwxr-xr-x | posix/globtest.sh | 2 | ||||
-rw-r--r-- | posix/tst-getconf.sh | 2 | ||||
-rwxr-xr-x | posix/wordexp-tst.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/posix/globtest.sh b/posix/globtest.sh index a50a6b9..73fe11b 100755 --- a/posix/globtest.sh +++ b/posix/globtest.sh @@ -1,4 +1,4 @@ -#! /bin/bash +#!/bin/bash # Test for glob(3). # Copyright (C) 1997-2016 Free Software Foundation, Inc. # This file is part of the GNU C Library. diff --git a/posix/tst-getconf.sh b/posix/tst-getconf.sh index 3881a9c..95d11f5 100644 --- a/posix/tst-getconf.sh +++ b/posix/tst-getconf.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Test for getconf(1). # Copyright (C) 2001-2016 Free Software Foundation, Inc. # This file is part of the GNU C Library. diff --git a/posix/wordexp-tst.sh b/posix/wordexp-tst.sh index 8d68e0f..c52825b 100755 --- a/posix/wordexp-tst.sh +++ b/posix/wordexp-tst.sh @@ -1,4 +1,4 @@ -#! /bin/sh +#!/bin/sh # Test for wordexp(3). # Copyright (C) 1998-2016 Free Software Foundation, Inc. # This file is part of the GNU C Library. |