Hi,
I unfortunately do not have time to put myself in C or browse all the forums dedicated to this programming ...
I need to translate this little bash function in C:
myfunc()
{
if [ "$1" ]
then
/bin/a arg1 arg2 "$@"
else
/bin/b
fi
}
If an argument is given, then the program a is called with two new arguments, otherwise the program b is called...
Thanks