Files
oam/snippets/find.sh
2024-02-19 21:24:11 +01:00

10 lines
203 B
Bash

#!/usr/bin/env sh
# Ignore permission errors.
# -------------------------
find '/' -type 'f' -name 'git-remote-keybase' 2>/dev/null
# GNU find.
find '/' -type 'f' -name 'git-remote-keybase' -readable