1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

しばらく使わなくなったディレクトリ達へ

Last updated at Posted at 2024-09-06

よく整理されてはいるけど利用頻度がとてつもなく低いディレクトリ達をまとめて圧縮してしまうと、何がなんだかわからなくなるので、ディレクトリごとにサッと圧縮するということをした。

#!/bin/sh
cd 対象ディレクトリ || exit
for dir in */; do
  base="$(basename "$dir")"
  dir="${dir%/}"
  tar -cvzf "${base}.tar.gz" "${dir}"
  rm -rf "${dir}"
done

少々安全面に問題はあるが、まるで使わなくなったものがgrep, findの対象から外れるという点も良い。
たまに必要になった際に探しやすく必要なものだけ解凍できるので気に入っている。

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?