The Gentoo guide to switch from tetex to texlive contains a little command line gem. It allows you to look for broken/dangling symbolic links and delete them interactively:
find /usr/bin -type l ! -xtype f ! -xtype d -ok rm -f {} \;
reviews, tips and tricks, opinions about open and less open technology
The Gentoo guide to switch from tetex to texlive contains a little command line gem. It allows you to look for broken/dangling symbolic links and delete them interactively:
1 comment:
find /usr/bin -type l ! -xtype f ! -xtype d -delete
Post a Comment