diff options
author | Matthew Lemon <y@yulqen.org> | 2023-10-17 13:10:41 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-10-17 13:10:41 +0100 |
commit | 658ec6b1bdb793148dc01ece2cf754c245eb5d76 (patch) | |
tree | ae2f32d5be15c12bc7bb16b8200c0dc6cda7fcc7 /curset.sh | |
parent | 495aa3b8d3b274a824b0752465fe9c7d4db92691 (diff) | |
parent | 115f7acbd49591f4ce2d9efca7019b511a0451b3 (diff) |
Merge branch 'master' of git.sr.ht:~yulqen/bash-scripts
Diffstat (limited to 'curset.sh')
-rwxr-xr-x | curset.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/curset.sh b/curset.sh new file mode 100755 index 0000000..8d80605 --- /dev/null +++ b/curset.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +file=$(find ~/Documents/Notes -type f|fzf) +curdir=~/Documents/Notes/current/ + +if [[ -d $curdir ]]; then + ln -s "$file" "$curdir" + echo "Created symbolic link for $file in $curdir." +else + echo "The ~/Documents/Notes/current directory does not exist. Please create it to proceed." + exit 1 +fi + |