.local/bin/fslcd (view raw)
1#!/bin/sh 2 3# script to quickly get to any fossil repo using fzf 4 5main() { 6 _fsl_checkout=$(fossil all ls -c | fzf +m) && 7 cd "$_fsl_checkout" || return 8} 9 10main "$@"