tips:taskfile

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
tips:taskfile [2022/04/11 07:30] sscipionitips:taskfile [2022/08/04 17:06] (current) ngiacobbo
Line 1: Line 1:
-====== taskfile ====== +====== Taskfile ====== 
- +===== Custom taskfile ===== 
-<code> +<code bash
-curl -"http://wiki.csgalileo.org/tips:taskfile?do=export_code&codeblock=1" | /bin/bash+curl -sL "http://wiki.csgalileo.org/tips:taskfile?do=export_code&codeblock=1" | /bin/bash
 </code> </code>
  
-<code+<file bash
-curl -"http://wiki.csgalileo.org/tips:taskfile?do=export_code&codeblock=2" > task+curl -sL "http://wiki.csgalileo.org/tips:taskfile?do=export_code&codeblock=2" > task
 chmod +x task chmod +x task
-</code>+echo "new ./task file created" 
 +</file>
  
-<code | taskfile>+<file bash taskfile>
 #!/usr/bin/env bash #!/usr/bin/env bash
  
Line 33: 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.1649655017.txt.gz
  • Last modified: 2022/04/11 07:30
  • by sscipioni