LinuxDay2


# rm 文件名 删除文件(删除需要非常小心)
rm file_target.txt

# mv 文件名1 文件名2  把文件名1 重命名为 文件名2
mv file_target.txt hello.txt

# mv 文件名1 文件夹名字  将文件移动
mv file_target.txt 文件名

# less 类似文件浏览的作用,可以方向键上下移动,退出的话使用'q'退出
less 文件名


# 权限
-rw-r--r--

chmod

# chmod 修改权限
# chmod u-r 文件名 去掉user读的权限
chmod u-r file_target.txt

# chmod u+r 文件名 加上user读的权限
chmod u-r file_target.txt

# chmod go-r 文件名 小组与其他人都去掉读权限
chmod go-r file_target.txt

grep

# grep 关键字 文件名 这个文件是否有关键字,如果有红色的结果,说明存在
grep xx file_target.txt

# grep 关键字 文件名 这个文件是否有关键字,如果有红色的结果,说明存在;或者包含关键字的筛选出来
grep xx file_target.txt

# 正则有关
# grep l* 文件名 代表l字母在文件中出现多次,l* 至少出现0次
grep l* file_target.txt

# grep ll* 文件名 代表l字母在文件中出现多次,ll* 至少出现1次
grep ll* file_target.txt

# grep ^H 文件名 代表以H开头的
grep ^H file_target.txt

# grep H.ll 文件名 .代表是任意的字母
grep H.ll file_target.txt

# grep [Hh]ill 文件名 [Hh]可以代表左边或者右边,两个任意一个
grep [Hh]ill file_target.txt

# grep [A-Za-z]ill 文件名 [A-Za-z]ill可以代表任意一个字母带上ill
grep [A-Za-z]ill file_target.txt


# grep [A-Za-z]ill 文件名 | wc 统计这些信息内容
grep [A-Za-z]ill file_target.txt | wc





Enjoy Reading This Article?

Here are some more articles you might like to read next:

  • 2379. Minimum Recolors to Get K Consecutive Black Blocks
  • 2471. Minimum Number of Operations to Sort a Binary Tree by Level
  • 1387. Sort Integers by The Power Value
  • 2090. K Radius Subarray Averages
  • 2545. Sort the Students by Their Kth Score