假设我需要搜索一个文件 /etc/networking/interfaces
并需要更改interfaces里面的内容
我当前目录是/home/user
我应该怎么做?
sudo find /etc -name interfaces>temp1;
declare temp2=`cat temp1`;
vim $temp2;
或者这样:
declare temp=`locate /etc/network/interfaces -l 1` 将搜索到的路径送给变量temp
vim $temp 编辑
阅读(474) | 评论(0) | 转发(0) |