Removing user from multiple groups via command line

Want to know if any, a command line parameter(s) of removing a user from multiple groups without using any ineractive application?

you could redefine his groups with the command usermod:

# groups test
other bin sys lp
# usermod -G bin,sys test
# groups test
other bin sys

where other is the default group...

gP