mysql
摘要:优秀文章: https://mp.weixin.qq.com/s?src=11×tamp=1554260729&ver=1523&signature=keeMF1gTq5PtTf6Vfz6VWughZtqPcwTEAGyDZiktR-JviXAMZna8oc*7y6peuLLf*pRvwE
阅读全文
查看前后几行
摘要:1、查看前10行 head -10 file 2、查看后10行 tail -10 text 3、查看除了前10行之外的内容 tail -n +10 text 4、查看除了后10行之外的内容 head -n -10 text
阅读全文
sed命令
摘要:1、删除文件中的行(注意这样的话原始文件并没有发生变化,需要变化的话要加入-i参数) 2
阅读全文