如此经年,望尽千帆。
分类: 系统运维
2013-02-20 22:32:32
收集了几个,记录在此。
1、查看某文件的一部分
如果你只想看文件的前 5 行,可以使用 head 命令,如:sed –n '5,10p' /etc/passwd 这样你就可以只查看文件的第 5 行到第 10 行
2、将 file.txt 里的123改为 456
方法 1
sed 's/123/456/g' file.txt > file.txt.new 修改的保存到其它文件例:sed -i 's/DirectoryIndex index.html index.html.var/& index.htm index.php /g' /usr/local/apache2/conf/httpd.conf
3、echo 典型应用