From 12421b91986ee5f1bac66ac66e8176559cdc3da8 Mon Sep 17 00:00:00 2001 From: zleyyij Date: Thu, 30 May 2024 12:00:43 -0600 Subject: [PATCH] vault backup: 2024-05-30 12:00:43 --- .obsidian/plugins/obsidian-git/data.json | 2 +- IT/Scripting.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 IT/Scripting.md 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