13 lines
290 B
Bash
Executable File
13 lines
290 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
TEMPLATE_DIR="$HOME/Templates/src"
|
|
|
|
src=`ls "$TEMPLATE_DIR" | fzf --preview="$HOME/.dots/scripts/template_preview $TEMPLATE_DIR/{}"`
|
|
|
|
if [ -n "$src" ]; then
|
|
read -p "File name: " name
|
|
if [ -n "$name" ]; then
|
|
cp "$TEMPLATE_DIR/$src" "$name" -r
|
|
fi
|
|
fi
|