diff options
| -rwxr-xr-x | cleanup.sh | 12 | ||||
| -rwxr-xr-x | dir-to-movie.pl | 2 |
2 files changed, 13 insertions, 1 deletions
@@ -2,11 +2,23 @@ # Clean up stuff that we don't need that takes up lots of disk space. +df -h + +echo +echo "Cleaning up checkpoints..." + rm checkpoints/*/1_*.pth rm checkpoints/*/2_*.pth rm checkpoints/*/3_*.pth rm checkpoints/*/4_*.pth rm checkpoints/*/5_*.pth +rm checkpoints/*/6_*.pth +rm checkpoints/*/7_*.pth + +echo "Cleaning up recursive frames..." rm -rf recursive/*/*_0149 +echo +df -h + diff --git a/dir-to-movie.pl b/dir-to-movie.pl index 3222b1f..332c491 100755 --- a/dir-to-movie.pl +++ b/dir-to-movie.pl @@ -49,7 +49,7 @@ chdir("$path/$tag"); my $i = 0; -my $lines = read_dir('.') +my $lines = read_dir('.'); my $pwd = `pwd`; chomp $pwd; $pwd .= '/'; |
