Created
February 11, 2019 06:47
-
-
Save markwk/86ad08822d7cfe47ed8533eb812a233d to your computer and use it in GitHub Desktop.
Generate a unique identifier for plain text file names, including optional title and opening in target app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Bash script to generate a unique identifier for file name | |
# Used for a Plain Text Writing, Knowledge or Notes System | |
# | |
# Allows for following Options: | |
# -o: opening file in a target program | |
# Additional Title or name appended to end of file name | |
# | |
# Examples | |
# ./zettelnote.bash # creates file like 201902111415.md | |
# ./zettelnote.bash -o # create and open file | |
# ./zettelnote.bash test # creates file like 201902111415_test.md | |
file_date=$( date '+%Y%m%d%H%M' ) | |
if [[ $1 = "-o" ]]; then | |
TARGET_NAME=${2} | |
else | |
TARGET_NAME=${1} | |
fi | |
if [[ -z "$TARGET_NAME" ]]; then | |
filename="$file_date.md" | |
else | |
filename="$file_date""_$TARGET_NAME.md" | |
fi | |
if [ -f $filename ] | |
then | |
echo "File already exists. Skipping." | |
else | |
echo "Creating Note File: " $filename | |
touch $filename | |
fi | |
if [[ $1 = "-o" ]]; then | |
echo "Opening file" | |
open -a typora $filename | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment