跳转到内容
欢迎抵达彼岸 彼岸花开 此处谁在 -彼岸论坛

[分享创造] tmcmd,一款终端 ai 工具,可以通过自然语言描述获取终端执行命令

Featured Replies

发表于

tmcmd,一款终端 ai 工具,可以通过自然语言描述获取终端执行命令

项目地址: https://github.com/greycodee/tmcmd

Usage

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