LoginSignup
2
2

More than 5 years have passed since last update.

MacportsやHomebrewのアップデート

Last updated at Posted at 2014-05-31

Macports

portをアップデートして古いバージョンを消しつつ新しいバージョンをインストール、
最後にゴミファイルをクリーンまで一元化してshell scriptにまとめておく。
port syncよりかはまるごとselfupdateしてしまった方が良いらしい。
ナンデダロー。

#!/bin/sh
port selfupdate
port -uf upgrade outdated
port clean installed

Homebrew

本体アップデートしてインストールされてるのをアップグレードしてクリーンナップ。

#!/bin/sh
brew update
brew upgrade --all
brew cleanup

Fink

入れてないんでわかりません!

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2