-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(config): stabilize config
command
#910
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Nico Wagner <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ich habe das Kommando folgendermaßen erfolgreich getestet:
# Option skip-invalid
pica select -u "[email protected]" DUMP.dat.gz
# error: parse erorr: invalid record on line ...
pica config skip-invalid true
pica select -u "[email protected]" DUMP.dat.gz
# läuft durch, natürlich leer, da es [email protected] nicht gibt
pica config --unset skip-invalid
pica select -u "[email protected]" DUMP.dat.gz
# error: parse erorr: invalid record on line ...
#################################################
# Option normalization
pica select "[email protected], 021A.a" DUMP1.dat
# 1352397544,Die @Heinzels - Neue Mützen neue Mission (Das Original-Hörspiel zum Kinofilm)
pica select "[email protected]" --where "021A.a =? 'Mützen'" DUMP1.dat
# leer
pica config normalization nfd
pica select "[email protected]" --where "021A.a =? 'Mützen'" DUMP1.dat
# 1352397544
pica config --unset normalization
pica select "[email protected]" --where "021A.a =? 'Mützen'" DUMP1.dat
# leer
Die Einstellung von skip-invalid und normalization ist sehr praktisch. Bei der Gelegenheit bitte den Schreibfehler in der Meldung "error: parse erorr: invalid record on line ..." ändern.
In der config.qmd bitte ich noch den Rechtschreibfehler "Unicode Normalform" in den Zeilen 33, 35 und 52 zu "Unicode-Normalform" zu verbessern. Zusammengesetzte Substantive werden schließlich nicht durch Leerzeichen getrennt.
Signed-off-by: Nico Wagner <[email protected]>
Signed-off-by: Nico Wagner <[email protected]>
Lieber @mschumac, danke für das Review. Die Schreibfehler sind korrigiert und werden mit diesem PR in den
|
No description provided.