rice/dots/.scripts/funccf

8 lines
148 B
Text
Raw Normal View History

2021-03-11 00:07:19 +02:00
#!/bin/sh
# Recursively search my code folder for a specific folder
cf() {
cd $(find ~/code -maxdepth 4 -type d -name "$1" -print | sed 1q)
}