dwww Home | Show directory contents | Find package

#!/bin/sh
# Copyright (C) 2008 Kapil Hari Paranjape <kapil@debian.org>
# The contents of this file are released in the Public Domain
# A sample script to run a filter with
# some limits set as by ulimit

ulimargs="$*"
cmd="$*"
ulimargs=${ulimargs%%--*}
cmd=${cmd##*--}

ulimit -H ${ulimargs} > /dev/null 2>&1

[ -n "$cmd" ] || exit 0

if [ -z "$cmd" ]
then
        echo "usage:" $0 "<ulimit arguments> -- <filter cmd and args>"
        exit 1
fi

exec ${cmd}

Generated by dwww version 1.15 on Sun Jun 16 16:15:17 CEST 2024.