Steve wrote: > > Hmmm... maybe untar is an alias for 'tar -x(v)zf'
Almost. untar is a script that handles both ordinary tar files and gzipped tar files. The gzipped ones end up here: ------------------- zcat $1 | tar -xvf - --------------------- The tar in busybox does not have a -z parameter. Cheers, Steven
