是否可以反向引用扩展?

时间:2015-08-20 03:10:03

标签: linux shell

我试图做以下事情:

ln -s foo/bar/{a,b,c} \1

将扩展为:

ln -s foo/bar/a a
ln -s foo/bar/b b
ln -s foo/bar/c c

这可能吗?

1 个答案:

答案 0 :(得分:0)

不,这是不可能的。

作为替代方案,您可以使用for循环:

for c in a b c; do ln -s "foo/bar/$c" "$c"; done