added delpycache for deleting all __pycache__ folders in current folder and its subfolders

This commit is contained in:
sanj 2024-06-23 14:06:44 -07:00
parent aa5ed4866c
commit 78d7e305d7
2 changed files with 27 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

27
delpycache Executable file
View file

@ -0,0 +1,27 @@
#!/bin/bash
# Default directories to search
directories=("~/sync" "~/workshop")
# Check if a command line argument is provided
if [ $# -gt 0 ]; then
if [ "$1" == "." ]; then
# Use the current directory
directories=(".")
else
# Use the provided directory
directories=("$1")
fi
fi
# Iterate through each directory
for dir in "${directories[@]}"; do
# Expand tilde to home directory
expanded_dir=$(eval echo "$dir")
# Find and delete __pycache__ directories
find "$expanded_dir" -type d -name "__pycache__" -exec rm -rf {} +
done
echo "Deletion of __pycache__ folders completed."