Add new scripts
Signed-off-by: Severin Kaderli <severin.kaderli@gmail.com>
This commit is contained in:
parent
7721996115
commit
50042dc9c0
11 changed files with 95 additions and 35 deletions
19
system/.local/bin/sync_notes.sh
Executable file
19
system/.local/bin/sync_notes.sh
Executable file
|
@ -0,0 +1,19 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# SCRIPT NAME:
|
||||
# sync_notes.sh
|
||||
#
|
||||
# AUTHOR:
|
||||
# Severin Kaderli <severin.kaderli@gmail.com>
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# Sync notes in ~/Notes using git
|
||||
#
|
||||
# USAGE:
|
||||
# ./sync_notes.sh
|
||||
# Set custom wineprefix
|
||||
cd "/home/severin/Notes"
|
||||
git pull
|
||||
git add --all
|
||||
git commit -s -m "Update notes"
|
||||
git push origin master
|
Loading…
Add table
Add a link
Reference in a new issue