我想创建一个别名以快速查看带有逗号分隔符的表格格式文件:
alias thead='head | cut -d, -f1- | column -s, -t'
后来像这样使用它
thead file.csv
但是,它不起作用。什么是正确的语法?
bash alias
alias ×1
bash ×1