7 lines
208 B
Bash
Executable file
7 lines
208 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
CURDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
TEMPLATE="${CURDIR}/taskrc-template"
|
|
DESTINATION="${HOME}/.taskrc"
|
|
|
|
[ -f "${DESTINATION}" ] || cp -v "${TEMPLATE}" "${DESTINATION}"
|