diff options
author | Lukas Oertel | 2023-01-22 17:18:08 +0100 |
---|---|---|
committer | Lukas Oertel | 2023-01-22 17:18:08 +0100 |
commit | edf1ec190d2125ac5dbdd38635bc0b09f6c71033 (patch) | |
tree | cf51e3742220db7a117723b6a16d7bed0b014c43 /scripts/ldap-uid_cn_mail-as_csv | |
parent | bff3b4c9d4ea892ec1255dfe479b13b2fa5b0f92 (diff) |
Remove whitespace from previous commit
bff3b4c9d4ea892ec1255dfe479b13b2fa5b0f92
Diffstat (limited to 'scripts/ldap-uid_cn_mail-as_csv')
-rw-r--r-- | scripts/ldap-uid_cn_mail-as_csv/ldap-uid_cn_mail-as_csv.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/ldap-uid_cn_mail-as_csv/ldap-uid_cn_mail-as_csv.sh b/scripts/ldap-uid_cn_mail-as_csv/ldap-uid_cn_mail-as_csv.sh index ce6cb8f..cea44b1 100644 --- a/scripts/ldap-uid_cn_mail-as_csv/ldap-uid_cn_mail-as_csv.sh +++ b/scripts/ldap-uid_cn_mail-as_csv/ldap-uid_cn_mail-as_csv.sh @@ -27,11 +27,11 @@ split -l 3 $RND_FOLDER/ldap.txt $RND_FOLDER/ldap.txt.chunk. ls $RND_FOLDER/ldap.txt.chunk.* | xargs -P 4 -I {} sort {} -o {} cat $RND_FOLDER/ldap.txt.chunk.* > $RND_FOLDER/ldap.txt.sorted - cat $RND_FOLDER/ldap.txt.sorted | \ - # Split every 3 lines and make CSV file from data - xargs -n3 -d'\n' | \ - sed 's/cn: //g; s/ mail: /,/g; s/ uid: /,/g' | \ - # Quote columns with spaces correctly - sed 's/^/"/g; s/,/",/1' | sed 's/""/"/g' > ldapdata.csv +cat $RND_FOLDER/ldap.txt.sorted | \ +# Split every 3 lines and make CSV file from data +xargs -n3 -d'\n' | \ +sed 's/cn: //g; s/ mail: /,/g; s/ uid: /,/g' | \ +# Quote columns with spaces correctly +sed 's/^/"/g; s/,/",/1' | sed 's/""/"/g' > ldapdata.csv rm -r $RND_FOLDER |