Do this with bash:
echo '/user/x/'`date +%Y-%m-%d`
gives:
/user/x/2012-10-14
So, you would execute your script as:
$ pig -param outpath='/user/x/'`date +%Y-%m-%d` myscript.pig
Then in your STORE command use $outpath :
STORE abc INTO '$outpath';
source share