line-number.sh
来自「Shall高级编程」· Shell 代码 · 共 19 行
SH
19 行
#!/bin/bash# line-number.sh# This script echoes itself twice to stdout with its lines numbered.# 'nl' sees this as line 4 since it does not number blank lines.# 'cat -n' sees the above line as number 6.nl `basename $0`echo; echo # Now, let's try it with 'cat -n'cat -n `basename $0`# The difference is that 'cat -n' numbers the blank lines.# Note that 'nl -ba' will also do so.exit 0# -----------------------------------------------------------------
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?