2023-10-13 01:38:08 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Description: Delete (cleanup) permissions files in a folder, so that they are not included in
|
|
|
|
# text diff tests.
|
|
|
|
#
|
|
|
|
# Arguments:
|
|
|
|
# - $1: Name of the folder to do the cleanup operation in.
|
|
|
|
|
|
|
|
set +e
|
|
|
|
if [ "$#" -ne 1 ]; then
|
2023-12-18 23:48:21 -08:00
|
|
|
echo "Please provide a folder to clean the files in: $0 <folder_path>"
|
|
|
|
exit 1
|
2023-10-13 01:38:08 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
folder_path="$1"
|
|
|
|
if [ ! -d "$folder_path" ]; then
|
2023-12-18 23:48:21 -08:00
|
|
|
echo "'$folder_path' is not a directory. Please provide a folder / directory."
|
|
|
|
exit 1
|
2023-10-13 01:38:08 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
for file in "$folder_path"/*_SEP_*; do
|
2023-12-18 23:48:21 -08:00
|
|
|
if [ -e "$file" ]; then
|
|
|
|
rm "$file"
|
|
|
|
fi
|
2023-10-13 01:38:08 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
echo "Completed cleanup for permissions files"
|