Files
dotfiles/bin/clean
2024-05-31 11:59:23 -06:00

10 lines
133 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