标签: bash math centos division symbols
在CentOS上写一个小的bash脚本,让我的孩子练习数学,并希望用两个点来显示传统的分割线,而不是标准的“/”。
有没有办法在linux bash shell中执行此操作?
答案 0 :(得分:3)
您可以使用以下十六进制值打印Unicode字符:
$ printf '\u00F7' ÷
或
$ echo -e '\u00F7' ÷
答案 1 :(得分:2)
使用bash:
printf "%b" "\xc3\xb7"
输出:
÷