1.查找文件
find . -name "your file"
2.清屏
control + L
3.中止
control + C
4.显示文件的内容
cat ~/Desktop/test.log
5.根据内容创建文件
echo "hello world" >hello.c
cat hello.c
1.查找文件
find . -name "your file"
2.清屏
control + L
3.中止
control + C
4.显示文件的内容
cat ~/Desktop/test.log
5.根据内容创建文件
echo "hello world" >hello.c
cat hello.c