一段 tsv 代码

另一种在生物领域里常用的格式 tsv
更新于: 2023-04-17 15:55:21
# 生成 tsv
echo -e "col1\tcol2" > meta.tsv

# 一段example
Name    Age    Gender    Height (in)    Education Level
Alice    25    F    65.2    Bachelor's degree
Bob    30    M    70.1    Master's degree
Charlie    22    M    68.5    Some college
Diana    28    F    63.8    High school diploma

# 简单一点的
Product  Quantity
Apple    10
Banana   20
Cherry   15