feat: add simple script to convert from tsv export.
This commit is contained in:
parent
fe417c4438
commit
7ed8fd5182
1 changed files with 22 additions and 0 deletions
22
fromtext.sh
Executable file
22
fromtext.sh
Executable file
|
@ -0,0 +1,22 @@
|
|||
#!/bin/sh
|
||||
|
||||
SEP='\t'
|
||||
COLUMNS='4 5'
|
||||
|
||||
main() {
|
||||
while read -r line; do
|
||||
filename=
|
||||
i=0
|
||||
for c in $COLUMNS; do
|
||||
f="$(echo "$line" | awk -F$SEP "{print \$$c}")"
|
||||
[ -z "$f" ] && continue
|
||||
if [ "$filename" = '' ]; then
|
||||
filename="$(echo "$f" | tr '[:upper:]' '[:lower:]' | sed -e 's/ /-/g' -e 's/[^a-z0-9-]//g')"
|
||||
fi
|
||||
echo "$f" > "$filename.$i.md"
|
||||
i=$((i+1))
|
||||
done
|
||||
done
|
||||
}
|
||||
|
||||
main "$@"
|
Loading…
Add table
Reference in a new issue