diff options
Diffstat (limited to 'clear_dir.sh')
-rwxr-xr-x | clear_dir.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clear_dir.sh b/clear_dir.sh index 6b7e3db..57f891a 100755 --- a/clear_dir.sh +++ b/clear_dir.sh @@ -1,7 +1,7 @@ -#!/bin/bash +#!/bin/zsh ### clearing up the directory ### from temporary files -rm -rf __pycache__ -rm -f Output/* images.npy +rm -rf __pycache__ # Output* future proof +rm -f Output/* *.npy |