diff options
| author | jules@lens <julescarbon@gmail.com> | 2018-11-12 22:11:37 +0100 |
|---|---|---|
| committer | jules@lens <julescarbon@gmail.com> | 2018-11-12 22:11:37 +0100 |
| commit | b6247d1acbe4616fe5b25b38ca4dc93db87a5050 (patch) | |
| tree | e4445f682b73e3a6259f460d007ee4d5648bfb10 | |
| parent | 389d3270a84f381996c58f302e9cac5e783c333b (diff) | |
semicolon
| -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 .= '/'; |
