On Wed, Jun 10, 2009 at 01:58:49PM -0300, Nelson Sicuro wrote:
> Hi everyone
>
> I started using NILFS2 version 2.0.14 this month on Ubuntu 8.04 and 8.10
> distros (2.6.24-24-generic 64 bits), so far so good.
>
> I looked at the new's archives and find some interesting questions about
> deleting more than one CP at a time. Can I use this feature on my distro
> or do I need to recompile nilfs-tools? May this feature be included on
> Ubuntu 9.04?
>
> Best regards and congrats for the excellent job!
>
> Nelson Sicuro, from Brazil, Universidade Federal do ParanĂ¡
>
> _______________________________________________
> users mailing list
> [email protected]
> https://www.nilfs.org/mailman/listinfo/users
If you don't want to recompile , Just use seq with xargs :
#seq <start> <end> | xargs rmcp
Or If you don't want to type a lot : (untested)
function rmcpg {
seq $1 $2 | xargs rmcp
}
There's probably a better way If I actually knew how to script.
_______________________________________________
users mailing list
[email protected]
https://www.nilfs.org/mailman/listinfo/users