7 lines
148 B
Bash
Executable file
7 lines
148 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Recursively search my code folder for a specific folder
|
|
|
|
cf() {
|
|
cd $(find ~/code -maxdepth 4 -type d -name "$1" -print | sed 1q)
|
|
}
|