Skip to content

Instantly share code, notes, and snippets.

View lancelet's full-sized avatar
🖖
Reconfiguring the Primary Power Coupling

Jonathan Merritt lancelet

🖖
Reconfiguring the Primary Power Coupling
View GitHub Profile
@kfish
kfish / cdd.sh
Created October 1, 2014 01:27
cdu, cdd: cd up/down lots of empty directories, useful for navigating Java, Scala etc. code trees
function cd_down_rec () {
case $(find ./* -maxdepth 0 -type d -not -name ".*" | wc -l) in
1)
cd *
cd_down_rec
;;
*)
;;
esac