mbukowski's picture
Upload one_liner.sh with huggingface_hub
c05dd89 verified
raw
history blame
227 Bytes
#!/bin/bash
# try one
#sed 's/ *||| */\t/' raw.txt > processed.tsv
# try two - there were a few entries with multiple ||| delimiters, so we skip them
grep -Ev '(\|\|\|).*?\|\|\|' raw.txt | sed 's/ *||| */\t/' > processed.tsv