This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Requires pypinyin, can be installed with pip: https://github.com/mozillazg/python-pinyin | |
# Thanks to XerCis on CSDN: https://blog.csdn.net/lly1122334/article/details/105380586 | |
# Example: psort file-with-Chinese-words-on-each-line.txt | |
import sys | |
from pypinyin import pinyin, Style | |
from itertools import chain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Can be used to create a merged bibliography from a set of exported collectiions | |
# list files by name length: | |
MAINCOLLECTION=`ls *.bib | perl -e 'print sort { length($a) <=> length($b) } <>' | head -n 1` | |
MAINROOT=$(echo "$MAINCOLLECTION" | cut -f 1 -d '.') | |
rm -f "$MAINCOLLECTION Bibliography.md" # In case we already created one before | |
for FILE in *.bib |
OlderNewer