On Fri, 2009-06-05 at 11:20 -0500, Victor Lowther wrote:
> Why not just reimplement cat in sed?
>
> cat() {
> for x in "$@"; do
> sed s/,/,/ < "$1"
> done
> }
or shell:
cat() {
local line
while [ -n "$1" ]; do
while read line; do
echo "$line"
done < "$1"
shift
done
}
--
To unsubscribe from this list: send the line "unsubscribe initramfs" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
