From cd281ef46136b111393f4510c98fa7b61580ac37 Mon Sep 17 00:00:00 2001 From: Mike Holloway Date: Sat, 26 Mar 2022 21:21:08 -0400 Subject: [PATCH] On branch cleanup-function Changes to be committed: modified: hash-files Add cleanup step for removing temp csv file --- hash-files | 1 + 1 file changed, 1 insertion(+) diff --git a/hash-files b/hash-files index 2c53051..d52dea7 100755 --- a/hash-files +++ b/hash-files @@ -52,6 +52,7 @@ printf 'File: %s\nHash: %s\nMDLS Properties:\t%s\n' $1 $2 $3 } cleanup () { + rm $temp_csv_file write_log "Cleanup completed successfully." }