Update of /cvsroot/linux-vax/toolchain/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14222
Added Files:
_Tar
Log Message:
- Another helper to get the most correct version of "tar".
- Kenn: Now you can easily use --exclude
--- NEW FILE: _Tar ---
#!/usr/bin/env bash
case "`uname -s`" in
Linux) exec tar "$@";;
*) exec gtar "$@";;
esac
|