taskshell
taskshell copied to clipboard
always shows the tasksh --help on start. Is this default behaviour?
If yes, could you please let me know how do I change it to run the list command on start?
That is the default, and I am not aware of any way to change it.
There hasn't been a commit in such a long. Is this not being developed anymore?
To change it currently requires editing the source code, but it's not too difficult:
- Checkout tasksh source code.
- Run
cmake -DCMAKE_BUILD_TYPE=release .to generate makefile. - Run
maketo compile src and producesrc/tasksh - Edit
src/main.cppto insert//beforecmdHelp ();on line ~58. - Run
maketo re-compilesrc/tasksh - Either
sudo make installor just copysrc/taskshto somewhere on your user's path.
The downside is that, when there are future releases of tasksh, you'd need to pull the latest code and re-apply the change.