#!/bin/sh if [ "$TERM" = "linux" ]; then exit 1 fi dir="$(find ~/Dev ~/Dev/CPP/comp-org/ -mindepth 2 -maxdepth 2 -type d | fzf)" if [ -z "$dir" ]; then return else cd "$dir" fi