📄 first
字号:
#!/bin/sh# first.sh# This file looks through all the files in the current# directory for the string POSIX, and then prints those# files to the standard output.for file in *do if grep -q POSIX $file then more $file fidoneexit 0
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -