Files

8 lines
171 B
Bash
Raw Permalink Normal View History

2023-02-21 03:07:45 +08:00
#
# If marktext is called without an argument, open MarkText
# If marktext is passed a file, open it in MarkText
#
function marktext() {
open -a "MarkText.app" "$1"
}