How to export only "active" users from repotools in Jazz Team Server ?
![]()
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
![]()
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 |