FinkからHomeBrewに切り替えましたが、将来の問題を回避するために、Finkと一緒にインストールしたすべてのパッケージをアンインストールしたいと思います。
すべてのページを削除する必要があるこのPerlスニペットを見つけましたが、そうではありません:fink list | Perl -lne '/^s*is+(S+)/ and print $1' | xargs fink purge
すべてのパッケージを削除するにはどうすればよいですか?
xargsの-r問題は、バッククォートを使用することで簡単に回避できます。
fink purge `fink list | Perl -lne '/^\s*i\s+(\S+)/ and print $1'`
私はfinkに精通していませんが、fink list
が各パッケージの行を出力し、インストールされているパッケージの形式はi packagename
であると想定しています。問題は、\s
と\S
の代わりにs
とS
(リテラル文字)を使用していることです。それぞれ空白と非空白です。
正しい行はおそらく次のとおりです。
fink list | Perl -lne '/^\s*i\s+(\S+)/ and print $1' | xargs -r fink purge
また、xargsに-r
を追加して、一致する行(インストールされているパッケージ)がない場合にfink purge
が実行されないようにしました。
fink FAQ から:
Q5.6: How can I uninstall all of Fink?
A: Almost all files installed by Fink are in /sw (or wherever
you chose to install it), except for a few exceptions.
Thus, in order to get rid of Fink, enter this command:
fink remove --recursive daemonic xinitrc
Sudo rm -rf /sw
If you aren't planning to reinstall Fink you also will
want to remove the "source /sw/bin/init.csh" line you
added to your .cshrc file or the "source /sw/bin/init.sh"
line you added to your .bashrc file, whichever is appropriate
to your setup, using a text editor. If you had the xinitrc
package installed, then you will want to restore the original
/usr/X11/lib/X11/xinit/xinitrc, which has been backed up as
/usr/X11/lib/X11/xinit/xinitrc.YYYYMMDDhhmm, i.e. the
extension has a year, month, date, hour, and minute). If you
have more than one of these, the original one normally does
not mention sys-xinitrc-fink. Once you've found the right one,
you can use
Sudo mv /usr/X11/lib/X11/xinit/xinitrc.YYYYMMDDhhmm \
/usr/X11/lib/X11/xinit/xinitrc
replacing YYMMDDhhmm with the actual extension on your system.