Files
.dotfiles/tmux/tmux-ggclone

17 lines
212 B
Bash
Executable File

#!/usr/bin/env bash
if [[ $# -eq 1 ]]; then
selected=$1
else
read -p "url: " selected
fi
if [[ -z $selected ]]; then
exit 0
fi
ggman clone "$selected"
echo ""
read -p "press enter to continue..."