This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker image prune | |
docker container prune | |
docker volume prune | |
docker builder prune |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Find all directories containing pom.xml | |
directories=$(find . -type f -name pom.xml -exec dirname {} \;) | |
# Iterate over each directory and run mvn clean | |
for dir in $directories; do | |
echo "Cleaning $dir" | |
(cd "$dir" && mvn clean) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Create a plist script - local.gitPullSreHelm.plist | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>local.gitPullSreHelm</string> | |
<key>ProgramArguments</key> |