6 lines
89 B
Text
6 lines
89 B
Text
|
#!/bin/sh
|
||
|
|
||
|
cf() {
|
||
|
cd $(find ~/code -maxdepth 4 -type d -name "$1" -print | sed 1q)
|
||
|
}
|