Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

tSystem with linux command

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 :
0683p000009MDUK.png

My tSystem configuration :

0683p000009MDT3.png


Thanks for your help;
Labels (2)
1 Reply
Anonymous
Not applicable
Author

"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.