Files
.dotfiles/tmux/tmux-ggclone

19 lines
253 B
Bash
Executable File

#!/usr/bin/env bash
source "$XDG_CONFIG_HOME/zsh/scripts.zsh"
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..."