2013-06-05 1 views

ответ

0

Если вы хотите SYM-ссылки на локальном директории в вашей домашней директории:

cd my-own-local-dir 
for ifile in .*(.); do # notice the '(.)' matching only normal files 
    # rm -fv $ifile  # COMMENTED OUT, removing the original... 
    ln -vs ~/$ifile $ifile # sym-links to your home dir... 
done 

 Смежные вопросы

  • Нет связанных вопросов^_^