14 lines
188 B
Bash
Executable File
14 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if command -v brew &> /dev/null; then
|
|
brew cleanup
|
|
fi
|
|
|
|
if command -v nix &> /dev/null; then
|
|
nix-collect-garbage -d
|
|
fi
|
|
|
|
if command -v doom &> /dev/null; then
|
|
doom purge
|
|
fi
|