最新でないpackage一覧を一時ファイルに出力


# teeとmktempの勉強用
pip list --format=columns --outdate | \
  awk 'NR >=3 {print $1}' > $(mktemp | tee /dev/stderr)