summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-05-20 08:14:41 +0000
committerMike Frysinger <vapier@gentoo.org>2009-05-20 08:14:41 +0000
commit89a5c60b0f69184e6b279da774fddc3dc0143863 (patch)
tree728ec8107a2aa47217aa3a0dbaa44dcbb1d0e94b /sys-apps
parentold (diff)
downloadgentoo-2-89a5c60b0f69184e6b279da774fddc3dc0143863.tar.gz
gentoo-2-89a5c60b0f69184e6b279da774fddc3dc0143863.tar.bz2
gentoo-2-89a5c60b0f69184e6b279da774fddc3dc0143863.zip
tweak style
Diffstat (limited to 'sys-apps')
-rwxr-xr-xsys-apps/sed/files/dos2unix5
-rwxr-xr-xsys-apps/sed/files/unix2dos5
2 files changed, 4 insertions, 6 deletions
diff --git a/sys-apps/sed/files/dos2unix b/sys-apps/sed/files/dos2unix
index debe71409ba6..b046880dd195 100755
--- a/sys-apps/sed/files/dos2unix
+++ b/sys-apps/sed/files/dos2unix
@@ -1,3 +1,2 @@
-#!/usr/bin/env bash
-exec /usr/bin/sed -e 's/\x0D$//' ${*}
-
+#!/bin/sh
+exec sed -e 's/\x0D$//' "$@"
diff --git a/sys-apps/sed/files/unix2dos b/sys-apps/sed/files/unix2dos
index a6362f5cb883..4902a7c162cf 100755
--- a/sys-apps/sed/files/unix2dos
+++ b/sys-apps/sed/files/unix2dos
@@ -1,3 +1,2 @@
-#!/usr/bin/env bash
-exec /usr/bin/sed -e 's/$//' ${*}
-
+#!/bin/sh
+exec sed -e 's/$//' "$@"