I organize my demos by running my "urt-archive-demos" script periodically.
~/bin/urt-archive-demos contents:
Code:
#!/bin/bash
cd ~/.urt/q3ut4/demos
7z a old/demos.7z *8
if [ $? == 0 ]; then
rm -v *8
else
echo "7z je nekaj zeznul pa ne brišem niš"
fi
That echo line says something like "7z did something wrong so I'm not deleting any files".
It puts old demos into a 7z archive, so I only have relevant (fresh) stuff in the q3ut4/demos folder.