mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
12 lines
151 B
Bash
Executable File
12 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Creates a new `zet` inside the private `Zettlekasten`
|
|
|
|
_main() {
|
|
(ZETDIR="$GHREPOS/private-zets" eval zet "$@")
|
|
}
|
|
|
|
_main "$@"
|