blob: 22dd24c19123cc616b82996d0e573a0b087a43b4 (
plain) (
blame)
1
2
3
4
|
# Defined in /tmp/fish.x1oNhc/ftnotes.fish @ line 2
function ftnotes --description 'Use find to identify file names in Textnotes directory' --argument pattern
find ~/Nextcloud/Notes/ -type f -iname "*$pattern*" | cut -f6 -d/
end
|