↧
Answer by Bilal Masaud for how to export all FreeIPA users list to a csv format?
This command worked for me: ipa user-find --all | grep -E "User Login|First|Last|UID|Email" > IPA_RAW.txt after that, use this perl line to convert the format: perl -ne 'chomp; print $_ . (($. % 8)...
View Articlehow to export all FreeIPA users list to a csv format?
How can export all FreeIPA users to a csv file?
View ArticleAnswer by Luc Deschenaux for how to export all FreeIPA users list to a csv...
Late but full "copy/paste" answer (based on previous ones - thanks - I could have quit after writing ipa2json); for present and future needs.export users with:ipa user-find --all > ipa.txtif the...
View Article