Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 328 Bytes

File metadata and controls

20 lines (18 loc) · 328 Bytes

Task-rust

Task-rust is a simple task manager (like npm run) which can be used to shorten commands significantly. The tasks are stored in a tasks.json file.

Examples

// tasks.json
[
  {
    "name": "greet",
    "command": "echo Hello"
  }
]
% task greet
Hello
% task greet user
Hello user