7 lines
161 B
Bash
Executable file
7 lines
161 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ObsidianPath="${OBSIDIAN_NOTES_PATH}"
|
|
|
|
cd $ObsidianPath || { echo "Directory not found"; exit 1; }
|
|
|
|
nvim $ObsidianPath/2\ -\ Work/Working\ notes.md
|