diff --git a/Script/archive_each_file_into_separate_archive b/Script/archive_each_file_into_separate_archive new file mode 100755 index 0000000..274bbf5 --- /dev/null +++ b/Script/archive_each_file_into_separate_archive @@ -0,0 +1,4 @@ +#!/bin/bash + +find . -mindepth 1 -maxdepth 1 -type f -exec tar -cvzf 'out/{}.tgz' '{}' \; +