sh <(curl https://raw.githubusercontent.com/gkmngrgn/dosh/main/install.sh)
local cmd = require("dosh_commands") -- main module to run DOSH commands.
local name = "there" -- you can use all features of Lua programming language.
local function hello(there) -- even you can define your custom functions.
there = there or name
local message = "Hello, " .. there .. "!"
cmd.run("osascript -e 'display notification \"" .. message .. "\" with title \"Hi!\"'")
end
cmd.add_task{ -- cmd comes from dosh.
name="hello", -- task name, or subcommand for your cli.
description="say hello", -- task description for the help output.
required_commands={"osascript"}, -- check if the programs exist before running the task.
required_platforms={"macos"}, -- check if the current operating system is available to run the task.
environments={"development", "staging"}, -- DOSH_ENV variable should be either development or staging to run this task.
command=hello -- run hello function with its parameters when the task ran.
}
When you run this command on MacOS, you will get a notification popup on the screen and see some logs in the console:
$ DOSH_ENV="development" dosh hello lua
DOSH => [RUN] osascript -e 'display notification "Hello, lua!" with title "Hi!"'
Take a look at the examples
folder to find ready-in-use config files.
Help outputs consist of four parts: description, tasks, commands, and epilog. The tasks will be generated getting task names and descriptions from your config file. The commands are including pre-defined dosh tasks and common task parameters. All help outputs start with a description and ends with an epilog if you have.
If you want to edit the default description and add an epilog to the help output, you can modify these variables:
local cmd = require("dosh_commands")
cmd.set_env {
HELP_DESCRIPTION = "shell-independent task manager",
HELP_EPILOG = [[
Wikipedia says that an epilog is a piece of writing at the end of a work of
literature, usually used to bring closure to the work.
]]
}
$ dosh help
dosh - shell-independent task manager # HELP_DESCRIPTION HERE
Tasks: # TASKS DEFINED BY THE USER
> hello say hello
Dosh commands:
> help print this output
> init initialize a new config in current working directory
> version print version of DOSH
-c, --config PATH specify config path (default: dosh.lua)
-d, --directory PATH change the working directory
-v|vv|vvv, --verbose increase the verbosity of messages:
1 - default, 2 - detailed, 3 - debug
Wikipedia says that an epilog is a piece of writing at the end of a work of # HELP_EPILOG HERE
literature, usually used to bring closure to the work.
All the following variables will return true
or false
depending on the operating system that you ran dosh:
env.IS_LINUX
env.IS_MACOS
env.IS_WINDOWS
It's like OS type checking. It's useful if you use shell-specific package like ohmyzsh
.
env.IS_BASH
env.IS_PWSH
env.IS_ZSH
Consider you have some tasks that help you to test the project on your local and you want to restrict the task to prevent running it on the server by mistake. So the method cmd.add_task
has an environments
parameter and you can set your environment name for each target.
DOSH_ENV
(define it on your~/.profile
file or CI/CD service)
Check out the file dosh_environments.lua
for example usage.
The main purpose of dosh to write one script that works on multiple operating systems and different shells. But it has to have a limit and it's nonsense to define functions for each cli command. So if you want to run a cli app (like exa
, bat
, helix
, etc.), then you can use cmd.run
for it.
Check out the file dosh_greet.lua
for example usage.
There are some ready-made functions both to keep the code readable and to make it work the same in all operating systems. You know Windows prefers backslash as a path separator but with dosh, use always /
as in /foo/bar/baz
, let dosh to find the path in a common way.
Check out the file dosh_config.lua
for example usage.
There are many package managers and I'm not sure if we need to implement all of them. But at least dosh supports these three of them mostly:
-
cmd.brew_install
(for MacOS and Linux) -
packages
: list of strings, required. -
cask
: boolean, default isfalse
. -
taps
: list of strings, optional. -
cmd.apt_install
(for Debian based Linux distros) -
packages
: list of strings, required. -
cmd.winget_install
(for Windows) -
packages
: list of strings, required.
Check out the file dosh_config.lua
for example usage.
To check if file or folder exists, use cmd.exists
. And if you want to check if a command exists, use cmd.exists_command
.
You can manage the command outputs by defining the verbosity level. It's still possible to use print
, but if you want to hide the command outputs completely or print them by the verbosity level, you have to use these logging functions:
cmd.debug
cmd.info
cmd.warning
cmd.error
For more information about the verbosity parameter of dosh, type dosh help
.
Check out the file dosh_greet.lua
for example usage.
No. Don't trust any project. The source code is open, trust yourself and read the code.
Yes, of course. I use multiple operating systems with different shells, and I'm too tired to write my scripts in multiple languages. This is why I created this project.
They are typically used to build and package software for distribution and are more geared towards building and managing software projects, while Dosh is more focused on running tasks from the command line. They serve different purposes and are not directly comparable. I keep these rules in mind:
-
If I need to add a paragraph to the
README.md
file to explain how to configure the development environment and need to run some commands on my local, write a DOSH task namedsetup
instead, and then add just one sentence: "You can start development with a magic command: dosh setup." Or better yet, tell the contributors to typedosh help
to see all available tasks. -
If I don't want to create a project or repository for my personal tasks, I create
dosh.lua
in my home folder and write my tasks directly. For example, I have a task namedgit-sync
that pulls the latest changes from the remote server or warns me if there's a conflict in the repository. -
If I need a command alias but also need to run the command in Windows and Mac OS X, or in powershell and zsh, DOSH makes it simple.
Because there's pyproject.toml
and I use poetry
. The other reason is that I don't want to create a circular dependency.
Because it's too dangerous! I don't use any remove command in my scripts indeed. If you really need a remove command, you can run it with cmd.run
. But remember, contributors of this project don't guarantee anything.