On Mon, 2004-03-22 at 15:13, Jeremy C. Reed wrote:
> On Mon, 22 Mar 2004, Craig White wrote:
>
> > I'm now up to ...
> > for i in `cut -f1 $wdirect/users-homes`; do result=$(( $size_plateau -
> > $i )); if (($result<=0)); then `echo $i`; fi; done
> >
> > so it's time to use the grep thought that Jeremy had
>
> I'd do something like:
>
> du -sh /home/* | while read line ; do
> i=`echo $line | cut -f1` ;
> if [ $i -gt $size_plateau ] ; then
> echo $i for `echo $line | cut -f2 | xargs -n 1 basename`
> fi
> done
----
I'm getting (as many as the value of $i)
./chksize-users-profiles2: line 9: [: too many arguments
which is the:
if [ $i -gt $size_plateau ] ; then
line
- hmmm, I am trying to figure out where you are going with the xargs and
basename commands...
I certainly like your structure and I can see where I can have the value
for -f1 & -f2 in the current but separate arrays much easier.
Craig
---------------------------------------------------
PLUG-discuss mailing list -
PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change you mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss