Deprecated: Array and string offset access syntax with curly braces is deprecated in /mnt/hep_web/hep_web/member/n-kota/dokuwiki/inc/init.php on line 542
ja:bash:wanttodo4

連番ファイルの後半だけ削除

file_0.txt
file_1.txt



file_99.txt
があるうち、50−99までを削除したいとする。

ls -v file_* | tail -n 50 | xargs rm

はじめ、lsがaliasされてうまくいかなかったが“\ls”としてやるとうまくいった。