我的键盘按钮有问题,我已经更换了 3 次键盘。我暂时将 printf 用于某些文本编辑器。我需要在别名上使用颜色打印数组中的“`”和“%”字符,根本不起作用。
基本上在 bash 中是这样的:
printf "[%c%c%c]\n", '`', '`', '%';
输出 :
[``%]
我试试这个:
alias key='printf "\n\033[33m= "[ %c%c%c~+ |\ ]\n\n", '`', '`', '%'" '
在别名上我得到这个错误:
]nn, , %: command not found
别名上的格式字符应该是什么?
提前致谢。