揮発性のメモ2

知識をメモ書きしておく

Linuxでたくさんのファイルを削除する

$ rm *
bash: /bin/rm: 引数リストが長すぎます

ってどんだけだよ

$ ls | xargs rm

でOK