According to this cut command lacks --complement option. Any suggestions as how to get this?
I needed this as it is supported on Linux sh
My problem is quite similar to this so I tried following to make it work
#!/bin/sh
EXTRA=$@
REST=`echo $EXTRA | cut -d ' ' --complement -s -f1`
echo $REST
Any suggestions are welcome
PS: I cannot use bash instead of sh