Finally working
parent
e8f419c261
commit
1d80a84dc8
@ -1,10 +1,5 @@
|
||||
#! /bin/sh
|
||||
|
||||
for noteDir in "$1/notes/*"; do
|
||||
echo "noteDir: $noteDir"
|
||||
noteName=$(echo $noteDir| cut -d'/' -f3)
|
||||
notePath="$(echo $noteDir| cut -d'/' -f1-2)/$noteName"
|
||||
echo "noteName: $noteName"
|
||||
echo "notePath: $notePath"
|
||||
sed -i "s#Resources/attachments#notes/$noteName#" $notePath/index.md
|
||||
done
|
||||
# Grab the "note name", e.g. `$BLOGDIR/contents/notes/demo-post/` yields 'demo-post'
|
||||
noteName=$(echo $1|awk -F'/' '{print $(NF-1)}')
|
||||
sed -i "s#Resources/attachments#notes/$noteName#" $1
|
||||
|
Loading…
Reference in New Issue