Taitava / obsidian-shellcommands

Execute system commands via hotkeys or command palette in Obsidian (https://obsidian.md). Some automated events are also supported, and execution via URI links.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

     β« Remember to enable!

Shell commands plugin for Obsidian

This plugin lets you define shell/terminal commands in settings and run them quickly via Obsidian's command palette, or via hotkeys. Use note related variables as part of the commands, and insert output back to your notes, if you wish. This is a Swiss army knife when it comes to accessing external applications from Obsidian, and you are the one who defines its tools.

You can customise your commands with built-in variables that can provide the current file title/name/path, current file's parent folder name/path, and date/time stamp with a custom format.

A changelog is available in a separate file.

WARNING: Be careful with system commands! Only use commands that you know and trust. If you are copying and pasting commands from the internet or from files written by other people, you need to understand precisely what those commands do! Otherwise, you might lose your files, or screw up your system!

Linux: If you have installed Obsidian using Flatpak, shell commands are executed in an isolated environment, which may cause unexpected behaviour or error messages. Please consider other installation options.

The plugin is still in its early development stage. Use at your own risk, and note that when you upgrade the plugin, things may break.

This plugin doesn't come with any kind of warranty in case it does something bad to your files! If you know programming, check the source code in GitHub so you know how it executes commands.

Main issues

  • Windows & PowerShell: Non-English characters can be corrupted in output. Input might work ok. Read more: #157. Linux and Mac users should not have this issue.
  • Special characters in {{variable}} values are escaped (except if CMD.EXE is used as a shell), but it's still experimental. Potential escaping problems can be dangerous. Documentation about how special characters are escaped in variable values. Edit 2022-03-11: Now that the escaping system has been in use for a few months, it seems that it works quite nicely. However, more experience is still welcome. Edit 2022-06-10: Changed the link to point to documentation that contains newer information than issue #11.
  • No mobile support, because the plugin uses NodeJS's child_process, so I've flagged this plugin as desktop only. I do not have any plans at the moment to research an ability to make this work on mobile. If you have some clues, please start a discussion in GitHub.

For future ideas, see the Discussions section.

Installation & usage

  1. Search for this plugin in Obsidian's community plugins settings panel.
  2. Click Install, and after that remember to click Enable!
  3. Head to Shell commands settings tab.
  4. All commands will be run in a certain directory. By default, it's your vault's base directory. If you want to run the commands in some other directory, you can type it in the Working directory field.
  5. Define one or more commands by clicking the New command button and entering a command. Read variable usage instructions in the settings panel if you need them.
  6. For advanced settings, such as a command alias name that appears in the command palette instead of the actual shell command, or an ability to direct command output to a currently active note, click a small gear icon next to the shell command.
  7. All commands that you have defined, will be added to Obsidian's command palette. You can execute them from there (by hitting Ctrl/Cmd + P and searching for your command) or you can define a hotkey for each individual command in Obsidian's Hotkeys settings tab.

Extensive documentation

... is available right here: https://publish.obsidian.md/shellcommands

Usage examples

Example shell commands have been moved to: https://publish.obsidian.md/shellcommands/Example+shell+commands/Example+shell+commands

Escaping special characters in variable values

(Todo: check that the Documentation has all this content, and then remove this section from README.md.)

Note that special characters (= anything else than letters, numbers and underscores _) are automatically escaped in variable values. Escaping depends on the shell that you use, but generally speaking, each special character is prefixed with an escape character, which might be \, ` or % depending on shell.

Without escaping, if you would have a command and a quoted string parameter like mycommand {{clipboard}}, it might break if your clipboard content contains > characters, because those would be inserted into the command as-is. Your command might end up looking like this: mycommand Text pasted from clipboard that contains a > character. The > character would redirect output to a file and might overwrite an important file. That's why escaping is in place, making the aforementioned command look like this: mycommand\ Text\ pasted\ from\ clipboard\ that\ contains\ a\ \>\ character\. (when the shell is Bash). Your shell then parses the escaped special characters and uses them as literal letters, not as special characters.

If you want to avoid escaping special characters in variable values, you can use {{!variable}} syntax, meaning that you can add an exclamation mark ! in the front of a variable's name. Note that this can be dangerous, and you need to understand very well what you are doing if you use this kind of raw, unescaped variable values! In most situations, you should be able to use escaped variables really well.

Benefits from other plugins

Not a single plugin can be great just by itself. And not a single plugin suits every situation. Here I'm collecting a list of plugins that can be good companions or good alternatives to Shell commands.

  • Advanced URI: You can use this to open other vaults, switch workspaces without using a graphical user interface, and append content to notes, etc. Example command to insert clipboard content into a note with a shell command: start "" obsidian://advanced-uri?vault=Vault_name&filepath=Filename.md&data={{clipboard}}&mode=append (on Windows). Another way, without Advanced URI, is to use something like echo {{clipboard}} >> Filename.md (on Windows).
  • cMenu: When you select text, this plugin opens a small modal of buttons for text formatting and other actions. You can add shell commands to the mix!
  • Customizable Sidebar: Allows you to add new left side menu icons that fire what ever Obsidian command you want - including shell commands!
  • QuickAdd: You can create macros that launch multiple commands at once. Sure, in Shell commands, you can have multiple terminal commands executed one after another (with && operator for Linux and Mac, and & operator for Windows), but QuickAdd allows you to have macros that combine shell commands to other Obsidian commands.
  • Text Expander: If you want to write codeblocks in your markdown note files and execute them, then Text Expander is the solution for you. Shell commands focuses on bringing short, rarely changed terminal commands at your fingertips via hotkeys. You can run longer scripts with Shell commands too by writing them into a bash/batch file and executing that file as a command, but if you need to view the script before executing it, or make changes regularly, then Shell commands is not so optimal for your situation, and you might benefit more from Text Expander. But of course, you can also have both if you like.

(Thanks FelipeRearden for telling me about many of these plugins!)

Tested platforms

Here is a list of operating systems this plugin has been tested on, along with Obsidian version and the plugin's version (= SC, Shell commands).

Shell commands version Windows 10 Linux (Xubuntu 22.04) Mac
SC 0.22.0 Obsidian 1.5.12
Works
Obsidian 1.5.12
Works
SC 0.21.0 Obsidian 1.5.3
Works
Obsidian 1.5.3
Works
SC 0.20.1 Obsidian 1.3.5
Works
Obsidian 1.3.7
Works
SC 0.20.0 Obsidian 1.3.5
Works
Obsidian 1.3.5
Works
SC 0.19.1 Obsidian 1.3.4
Works
Obsidian 1.3.4
Works
SC 0.19.0 Obsidian 1.3.4
Works
Obsidian 1.3.4
Works

Linux version has changed from Xubuntu 20.04 to 22.04.

Shell commands version Windows 10 Linux (Xubuntu 20.04) Mac
SC 0.18.2 Obsidian 1.1.16
Works
Obsidian 1.1.16
Works
SC 0.18.1 Obsidian 1.1.12
Works
Obsidian 1.1.12
Works
Obsidian 1.1.12
Tested that fix #314 works.
SC 0.18.0 Obsidian 1.1.9
Works
Obsidian 1.1.9
Works
SC 0.17.0 Obsidian 1.0.3
Works
Obsidian 1.0.3
Works otherwise but there's the already reported newline bug.
SC 0.16.0 Obsidian 0.16.3
Works
Obsidian 0.16.3
Works
SC 0.15.0 Obsidian 0.15.9
Works
Obsidian 0.15.9
Works
SC 0.14.0 Obsidian 0.15.6
Works
Obsidian 0.15.6
Works
macOS: Monterey 12.4 (21F79)
Obsidian: 0.15.9
Works otherwise but there's a newline bug. Tested by gapmiss, thank you! πŸ™‚
SC 0.13.0 Obsidian 0.14.15
Works
Obsidian 0.14.15
Works
SC 0.12.1 Obsidian 0.14.6
Works
Obsidian 0.14.6
Works
SC 0.12.0 Obsidian 0.14.6
Works
Obsidian 0.14.6
Works
SC 0.11.1 Obsidian 0.13.23
Works
Obsidian 0.13.23
Works
SC 0.11.0 Obsidian 0.13.23
Works
Obsidian 0.13.23
Works
macOS: 11.6
Obsidian: ?
Works, tested by FelipeRearden, thank you! πŸ™‚
SC 0.10.0 Obsidian 0.13.23
Works
Obsidian 0.13.23
Works
macOS: 11.6
Obsidian: ?
Works, tested by FelipeRearden, thank you! πŸ™‚
SC 0.9.0 Obsidian 0.12.19
Works
Obsidian 0.12.19
Works
SC 0.8.0 Obsidian 0.12.19
Works
Obsidian 0.12.19
Works
macOS: 11.6
Obsidian: 0.12.19
Works, tested by FelipeRearden, thank you! πŸ™‚
SC 0.7.1 Obsidian 0.12.19
Works
Obsidian 0.12.19
Works
SC 0.7.0 Obsidian 0.12.19
Works
Obsidian 0.12.19
Works
macOS: 11.6
Obsidian: 0.12.19
Works, tested by FelipeRearden, thank you! πŸ™‚
SC 0.6.1 Obsidian 0.12.19
Works
Obsidian 0.12.19
Works
SC 0.6.0 Obsidian 0.12.15
Works
Obsidian 0.12.15
Works
macOS: 11.1
Obsidian: 0.12.15
Works, tested by FelipeRearden, thank you! πŸ™‚
SC 0.5.1 Obsidian 0.12.15
Works
Obsidian 0.12.15
Works
SC 0.5.0 Obsidian 0.12.15
Works
Obsidian 0.12.15
Works
macOS: 11.1
Obsidian: 0.12.15
Works, tested by FelipeRearden, thank you! πŸ™‚
SC 0.4.1 Obsidian 0.12.15
Works
Obsidian 0.12.15
Works
macOS: 11.1
Obsidian: 0.12.15
Works, tested by FelipeRearden, thank you! πŸ™‚
SC 0.4.0 Obsidian 0.12.15
Works
Obsidian 0.12.15
Works
SC 0.3.0 Obsidian 0.12.15
Works
Obsidian 0.12.15
Works
macOS: 11.1
Obsidian: 0.12.15
Works, tested by FelipeRearden, thank you! πŸ™‚
SC 0.2.0 Obsidian 0.12.15
Works
Obsidian 0.12.15
Works
macOS: 11.1
Obsidian: 0.12.15
Works, tested by FelipeRearden, thank you! πŸ™‚
SC 0.1.1 Obsidian 0.12.15
Works
Obsidian 0.12.15
Works
SC 0.1.0 Obsidian 0.12.12
Works
Obsidian 0.12.12
Works
macOS: 11.5.2
Obsidian: 0.12.5
Works, tested by skipadu, thank you! πŸ™‚
SC 0.0.0 Obsidian 0.12.12
Works
Obsidian 0.12.12
Works

As I do not own a Mac, tests on Mac are performed by other people, and I cannot guarantee that every version will be tested on Mac. That's the reason why Mac might not appear on every row in the above table. If you notice that the newest SC version does not have a Mac test record in the table, you can help by performing a Mac test yourself and submitting your freeform test result here.

Ask for help

If you have any questions about how to use this plugin, please feel free to open an issue in GitHub, or post in the plugin's Obsidian.md forum topic.

Contributing

Ideas, issues, feedback, pull requests etc. are all welcome! :)

  • For feature requests, please start a new discussion in Ideas category.
  • If you're about to create a pull request, please discuss your idea first so that you won't accidentally use your time for something that will be later decided to be implemented in a very different way. There might also be refactorings happening on the codebase, during which time it might be wise to wait until the refactoring is done before creating a PR, otherwise you might base your work on old codebase that will require you to update your PR when the refactoring is finished. So, ask before creating a PR, and I can tell if you should wait or not. :)

2022-09-27: I'm slowing down the develpment for a while πŸ™‚, click here to read more.

Author

For all authors, see AUTHORS.md.

Developer

Jarkko Linnanvirta

Contact:

Supported by

This project is free open source software and receives no funding. I want to thank the following parties for kindly supporting this project by giving free licenses/service subscriptions.

JetBrains Logo (Main) logo JetBrains

JetBrains offers me the ability to use their WebStorm editor free of charge for developing the Shell commands plugin. Read more about JetBrain's open source support.

WebStorm logo

Obsidian

Obsidian developers offer this project:

Copyright

Copyright (C) 2021 - 2023 Jarkko Linnanvirta (see other authors in AUTHORS.md).

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.

The full license is available in the GitHub repository of this project.

About

Execute system commands via hotkeys or command palette in Obsidian (https://obsidian.md). Some automated events are also supported, and execution via URI links.

License:GNU General Public License v3.0


Languages

Language:TypeScript 98.9%Language:CSS 0.9%Language:JavaScript 0.1%