Changed shebang
Changed shebang with a more portable one.
This commit is contained in:
parent
57c3862e5f
commit
b9ae8de850
1 changed files with 3 additions and 3 deletions
|
@ -53,7 +53,7 @@ function quickread() {
|
|||
else
|
||||
clear
|
||||
echo "No such note."
|
||||
cd $dir
|
||||
cd ~
|
||||
fi
|
||||
cd $dir
|
||||
}
|
||||
|
@ -72,7 +72,7 @@ if [ -e $notename ]; then
|
|||
|
||||
else
|
||||
touch $notename
|
||||
$QUICK_NOTES_EDITOR ./$notename
|
||||
$QUICK_NOTES_EDITOR $notename
|
||||
cd $dir
|
||||
clear
|
||||
echo "Note created in Home/$me/Notes"
|
||||
|
@ -219,7 +219,7 @@ function renamenote() {
|
|||
echo "There is another note named '$newnotename' in your Notes folder."
|
||||
else
|
||||
mv $notename $newnotename
|
||||
clear
|
||||
clear;
|
||||
echo "Note renamed from $notename to $newnotename in Home/$me/Notes"
|
||||
echo "-------------------------------------------------------------"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue