ulthar.xyz > Repos

dotfiles

Seven years worth of accumulated configuration cruft
About Files Commits git clone https://ulthar.xyz/repos/dotfiles/dotfiles.git

dotfiles/scripts/.local/bin/sf

Download raw file: scripts/.local/bin/sf

#!/bin/sh
# Search my files

[ "$#" -eq 2 ] || {
	printf "Search file names; Usage: sf [path] [regex]\n" 2>&1
	exit 1
}

find "$(realpath "$1")" -name "*" | grep -i "$2"
Generated 2025-03-07 15:24:27 -0700 by RepoRat