Skip to content

Instantly share code, notes, and snippets.

@nestoru
Created April 13, 2014 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nestoru/10585317 to your computer and use it in GitHub Desktop.
Save nestoru/10585317 to your computer and use it in GitHub Desktop.
Find Talend components in use from command line
# Change base_dir and job as needed
base_dir=/opt/talend
job=my_job
grep -o 'componentName="[^"]*' $base_dir/${job}/${job}/items/${job}/process/${job}*.item \
| sed 's/componentName="//g' | sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment