mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-11 21:42:39 -04:00
14 lines
270 B
Bash
14 lines
270 B
Bash
#! /bin/sh
|
|
#
|
|
# $NetBSD: xargs-sh,v 1.1 2007/07/01 23:27:43 tnn Exp $
|
|
#
|
|
# xargs(1) on Interix is broken. It executes the utility on the command line
|
|
# even if standard input is the empty string.
|
|
|
|
d="`/bin/cat`"
|
|
if [ "$d" != "" ]
|
|
then
|
|
echo "$d" | /bin/xargs $@
|
|
exit $?
|
|
fi
|