
exple : -m "une phrase avec espaces" tait spar en plusieur argvs.. => remplac par ${1+"$@"} darcs-hash:20000531123438-92525-6a6bfa4d5ffcb4de7b47a2e27eece76426be9ff3.gz
11 lines
245 B
Bash
Executable file
11 lines
245 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# OS Pas propre mais c'est pas moi qui ait commencé...
|
|
#
|
|
|
|
if [ `id -g` != 102 ] && [ X$CVSROOT = "X/home/httpd/CVS-Repository" ]; then
|
|
echo "Faire 'newgrp webcvs' avant de commencer !!!"
|
|
exit 1
|
|
fi
|
|
exec /usr/bin/cvs ${1+"$@"}
|
|
|