📄 trees2nexus
字号:
#! /bin/sh## Convert one tree per line into PAUP (NEXUS) tree file# Accepts input from named file(s) or standard input#echo "#NEXUS"echo ""echo "Begin Trees;"if test $# -eq 0; then egrep -n "." | sed -e 's/:/ = /' -e 's/^/ utree /'else i=0 for file in $*; do i=`expr $i + 1` sed -e 's/^/ utree '"$i"' = /' $file donefiecho "Endblock;"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -