Chinaunix首页 | 论坛 | 博客

wmm

  • 博客访问: 13928
  • 博文数量: 6
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 60
  • 用 户 组: 普通用户
  • 注册时间: 2015-08-18 21:08
文章分类
文章存档

2015年(6)

我的朋友

分类: LINUX

2015-08-18 23:46:10

假设我需要搜索一个文件 /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) |
给主人留下些什么吧!~~