diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-12-16 18:32:47 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-12-16 18:32:47 -0500 |
commit | 35525e096061c33b9c10cfb2b0312846b4b0b9fe (patch) | |
tree | 86dcb5db4756658c7a83652cd31fc1283ed5d9f0 /tests | |
parent | enable travis build support (diff) | |
download | pax-utils-35525e096061c33b9c10cfb2b0312846b4b0b9fe.tar.gz pax-utils-35525e096061c33b9c10cfb2b0312846b4b0b9fe.tar.bz2 pax-utils-35525e096061c33b9c10cfb2b0312846b4b0b9fe.zip |
use `sed -E -i.tmp` everywhere
POSIX is adding the -E flag to enable ERE behavior, and GNU/sed already
supports this, as do various BSD systems (including OS X).
While GNU makes the suffix to -i optional, POSIX/etc... do not, so make
sure we always specify it.
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/source/space | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/source/space b/tests/source/space index 530c273..9626c0c 100755 --- a/tests/source/space +++ b/tests/source/space @@ -11,7 +11,7 @@ if [ $# != 1 ] ; then EOF fi -sed -r '/[[:space:]]+$/s:[[:space:]]+$::' "$i" | \ +sed -E '/[[:space:]]+$/s:[[:space:]]+$::' "$i" | \ awk '{ if (NF == 0) { while (NF == 0) |