aboutsummaryrefslogtreecommitdiff
path: root/functions/rsmac.fish
blob: f0d3e498cf2822841c0a60898ff5f0bcfc164d17 (plain)
1
2
3
4
5
6
7
8
9
10
function rsmac --description 'Recursively delete all .DS_Store files'

if not command -sq 'find'
  echo "Can't find find."
  return 1
end

find . -type f -name '.DS_Store' -delete

end