tmcmd,一款终端 ai 工具,可以通过自然语言描述获取终端执行命令
项目地址: https://github.com/greycodee/tmcmd
tmcmd -q "View 80-port occupancy status"
Recommended command
netstat -a -n -p tcp | grep :80
tmcmd -q "Start the nginx service on docker and expose port 80."
Recommended command
docker run -d -p 80:80 nginx
Use the -p ollama
option to select ollama to process the current request.
tmcmd -q "Start the nginx service on docker and expose port 80." -p ollama
Recommended command
docker run -d -p 80:80 nginx