Skip to content

Instantly share code, notes, and snippets.

@lubianat
Last active June 3, 2026 12:33
Show Gist options
  • Select an option

  • Save lubianat/c74e867205b9b0b738b13e83e6ab1210 to your computer and use it in GitHub Desktop.

Select an option

Save lubianat/c74e867205b9b0b738b13e83e6ab1210 to your computer and use it in GitHub Desktop.
TSV to Markdown in the Terminal
# Add to ~/.bashrc or ~/.zshrc
alias tsv2md='f(){ awk -F"\t" '\''{printf "| "; for(i=1;i<=NF;i++) printf "%s%s", $i, (i<NF?" | ":" |\n")} NR==1{printf "|"; for(i=1;i<=NF;i++) printf " --- |"; printf "\n"}'\'' "$1"; }; f'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment