Here’s a tiny shell trick I use all the time when working with auto-generated or newly created folders: alias cdnewest='cd $(ls -1dt ./*/ | head -n1)' What It Does This one-liner changes into the newest directory in the current folder. It’s especial...
rh-scripts.hashnode.dev2 min readNo responses yet.