2 Fork me on GitHub 6
摘要: 1. 晨考试题 1. 用两种方法,实现将文件中的以# 开头的行把# 去掉 sed -r 's/^#/ /g' /etc/fstab cat /etc/fstab | tr -d '^#' 2.将文件中的hello world替换成 world hello sed -r 's/hello world/ 阅读全文
posted @ 2021-12-23 00:24 jinggo 阅读(76) 评论(0) 推荐(0)