It's all about the answers!

Ask a question

How to export only "active" users from repotools in Jazz Team Server ?


Mallikarjuna Kandala (106921) | asked Mar 18 '15, 7:17 a.m.
I have been trying to find out a way to export all the users present in RTC/RQM repository to a csv format file so later I can export into excel format.

I am using the repotools to export users using the below command :

./repotools-jts.sh -exportUsers toFile=RQM_users_2015_Q1_CBN.csv credentialsFile=credentials.properties repositoryURL=https://rqm.xxx.ibm.com:9444/jts logFile=RQM_users_2015_Q1_CBN.log

But this is capturing the archhived users information as well.

Please suggest.

Thanks in advance !

One answer



permanent link
Kevin Ramer (4.5k8178197) | answered Mar 18 '15, 9:03 a.m.
You can post-process this easily enough, just run :

grep -v ,1$ RQM_users_2015_Q1_CBN.csv > RQM_users_2015_Q1_CBN_active.csv


Your answer


Register or to post your answer.