Hello pterid,
lc pterid:
> The repo contains six tools (aufs-find, aufs-list, aufs-diff, aufs-clash=
> es, aufs-unwh and aufs-revert) and a few common functions in a library file=
> .
>
> I thought it may be worth me sharing the scripts here and asking for fee=
:::
Thank you posting.
I agree that your tools will be useful for users.
One note from me after a short glance:
Sometimes find(1) to branches takes long time. It may be better to try
multi jobs such like,
while read ...
do
find /path/to/branchN ... > /tmp/brabra.N &
done
wait
cat /tmp/brabra.*
Of course, when those branches are on the same HDD the performance will
NOT be good since the seek time will increase. But if the branches are
on SSD or something, we can expect the performance will be better.
I will add a small description about your tools to aufs README file.
Thank you
J. R. Okajima