diff --git a/.obsidian/plugins/obsidian-git/data.json b/.obsidian/plugins/obsidian-git/data.json index 4bc189e..7b1247f 100644 --- a/.obsidian/plugins/obsidian-git/data.json +++ b/.obsidian/plugins/obsidian-git/data.json @@ -2,7 +2,7 @@ "commitMessage": "vault backup: {{date}}", "autoCommitMessage": "vault backup: {{date}}", "commitDateFormat": "YYYY-MM-DD HH:mm:ss", - "autoSaveInterval": 5, + "autoSaveInterval": 1, "autoPushInterval": 0, "autoPullInterval": 5, "autoPullOnBoot": false, diff --git a/IT/Scripting.md b/IT/Scripting.md new file mode 100644 index 0000000..843d27d --- /dev/null +++ b/IT/Scripting.md @@ -0,0 +1,5 @@ +There are various shells with their own language syntax. Therefore, more complicated scripts will indicate a particular shell by specifying the absolute path to the interpreter as the first line, prefixed by `#!` like this: +```sh +#!/bin/sh +echo "Hello, World!" +``` \ No newline at end of file