I everyone,
I have a tSystem component in my job with a command Linux which allows me to move all .xlsx files in an other directory (Archives) by adding it the date.
My command is :
for file in *.xlsx; do mv $file $file_`date+%d%m%Y` Archives/;done
This command works very well since the shell console but when I using it with my job I have this error :
"for" is shell built-in command which may be part of your problem. You could put this command in a shell script and run that. Or better still, you could achieve this using Talend components.