Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
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
ln -s /usr/dotfiles/.[!.]* /usr/test
灵感来自
pavium’s answer