git clone --recursive https://github.com/siskinc/touch
cd touch
make test
make
make install_template
make install
filename: ~/.touch/cpp
/*
** Author: {USER}
** Create: {TIME}
*/
#include <iostream>
int main(int argc, char **argv)
{{
return 0;
}}
cmd:
ctouch a.cpp
/*
** Author: daryl
** Create: 2018-12-12
*/
#include <iostream>
int main(int argc, char **argv)
{
return 0;
}