存储在变量中的文件读取路径(脚本shell)

时间:2014-09-15 12:12:42

标签: linux bash shell

我有一个文件,里面有几条路径:

directory1/directory2/directory3

我想将其中一个路径放在脚本shell中的变量中,以将其用作路径。

我试过了:

name="`sed -n 2p file`"

但我不能使用如下命令: cd "../$name"。我有一条错误消息说这个文件夹不存在。

你知道如何在我的剧本上执行此操作吗?

2 个答案:

答案 0 :(得分:1)

我认为,这就够了

name=`sed -n 2p file`

答案 1 :(得分:1)

使用剪切,

name=`cut -f1 -d "/" file`  # instead of f1 use f2 for directory2 and so on
像这样,

[root@giam46 ~]# cat sample.txt
Desktop/MEF_R400
[root@giam46 ~]# name=`cut -f1 -d "/" sample.txt`
[root@giam46 ~]# echo $name
Desktop
[root@giam46 ~]# cd /root/${name}
[root@giam46 Desktop]# pwd
/root/Desktop
[root@giam46 Desktop]# cd ..
[root@giam46 ~]# pwd
/root
[root@giam46 ~]#