chezmoi/bin/executable_,cd

12 lines
170 B
Plaintext
Raw Normal View History

#!/bin/bash
2024-03-08 14:35:40 +01:00
2024-03-09 01:44:18 +01:00
( nohup fuzzy-clone cache update >/dev/null 2>&1 & )
2024-03-09 01:44:18 +01:00
choice=$(fuzzy-clone)
if [[ $? -ne 0 ]]; then
return $?
fi
cd "$(echo "$choice" | tail --lines 1)"