Skip to content

Instantly share code, notes, and snippets.

@rikonor
Created March 25, 2025 17:47
Show Gist options
  • Save rikonor/ed3e0ec78cd0997c477d22fdd2050b5f to your computer and use it in GitHub Desktop.
Save rikonor/ed3e0ec78cd0997c477d22fdd2050b5f to your computer and use it in GitHub Desktop.
Cline utilities
list_files() {
local dir="$1"
if [ -z "$dir" ]; then
echo "Usage: list_files <directory>"
return 1
fi
find "$dir" -type f -not -path '*/\.*' | sed 's|^|@/|'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment