ex77.sh
来自「Shall高级编程」· Shell 代码 · 共 17 行
SH
17 行
#!/bin/bash# String expansion.# Introduced with version 2 of Bash.# Strings of the form $'xxx'#+ have the standard escaped characters interpreted. echo $'Ringing bell 3 times \a \a \a' # May only ring once with certain terminals.echo $'Three form feeds \f \f \f'echo $'10 newlines \n\n\n\n\n\n\n\n\n\n'echo $'\102\141\163\150' # Bash # Octal equivalent of characters.exit 0
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?