tips:taskfile

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
tips:taskfile [2022/04/11 07:28] – created sscipionitips:taskfile [2022/08/04 17:06] (current) ngiacobbo
Line 1: Line 1:
-====== taskfile ====== +====== Taskfile ====== 
- +===== Custom taskfile ===== 
- +<code bash
-<code> +curl -sL "http://wiki.csgalileo.org/tips:taskfile?do=export_code&codeblock=1| /bin/bash
-curl -"http://wiki.csgalileo.org/tips:taskfile?do=export_code&codeblock=2> task+
 </code> </code>
  
-<code | taskfile>+<file bash> 
 +curl -sL "http://wiki.csgalileo.org/tips:taskfile?do=export_code&codeblock=2" > task 
 +chmod +x task 
 +echo "new ./task file created" 
 +</file> 
 + 
 +<file bash taskfile>
 #!/usr/bin/env bash #!/usr/bin/env bash
  
Line 29: Line 34:
 TIMEFORMAT="Task completed in %3lR" TIMEFORMAT="Task completed in %3lR"
 time "task:${@:-help}" time "task:${@:-help}"
-</code>+</file> 
 + 
 +===== Task project ==== 
 +Task is a task runner / build tool that aims to be simpler and easier to use than `Make GNU`. 
 +The home page of the project is available at [[https://taskfile.dev/|Task]].  
 + 
 +>In the case you are using Arch Linux it's better to install <code bash>paru -S go-task-bin #rather than `taskfile-git` as suggested</code> 
  • tips/taskfile.1649654890.txt.gz
  • Last modified: 2022/04/11 07:28
  • by sscipioni