0

I have a directory with several "dot files". I would like to symlink all these files.

I tried

$ ln -s /usr/dotfiles/* /usr/test
ln: creating symbolic link `/usr/test/*' to `/usr/dotfiles/*': No such file or directory
4

1 回答 1

0
ln -s /usr/dotfiles/.[!.]* /usr/test

灵感来自

pavium’s answer

于 2012-04-26T03:09:20.493 回答