cleanup script

This commit is contained in:
sadan 2025-05-07 23:30:25 -04:00
parent c1e593ed6b
commit 5479d25dd2
No known key found for this signature in database

View file

@ -1 +1 @@
cd ~/$(find ~/dev -mindepth 2 -maxdepth 2 -type d | while read f; do (zoxide query --all --list --score $f | grep -P "^\s*?\d+?\.\d+? $f$" || echo "0.0 $f") done | awk '{$1=$1};1' | sort -rg | grep -Po "(?<=\d{0,100}?\.\d{0,100}? ).*" | sed "s#${HOME}/##" | fzf --scheme=path --cycle --filepath-word --height=50% --reverse --border --border-label " Go To Project " --color=label:bold:cyan) cd ~/$(find ~/dev -mindepth 2 -maxdepth 2 -type d | while read f; do zoxide query --all --list --score $f | grep -Eo "[0-9]+?\.[0-9]+? $f$" || echo "0.0 $f"; done | sort -rg | grep -Po "(?<=\d{0,10}?\.\d{0,10}? ${HOME}/).*$" | fzf --scheme path --cycle --filepath-word --height 50% --reverse --border --border-label " Go To Project " --color label:bold:cyan)