📄 insert
字号:
#!/bin/sh# insert one file into another; the insertion-string must appear on# a line by itself, and contain no embedded spacesif [ "$2" = "" ] ; then echo "usage: $0 insertion-string file-to-insert < input > output" exitfiawk '{ if ($1 == "'${1}'") system("cat '"${2}"'"); else print }'
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -