写一条shell命令下载一个可执行程序,并在后台执行,并且不会产生 ‘wget-log’
curl -o program http://example.com/program && chmod +x program && nohup ./program >/dev/null 2>&1 &
原文地址: https://www.cveoy.top/t/topic/wzb 著作权归作者所有。请勿转载和采集!
安全问答是一个知识全球问答,包含丰富的问答知识
curl -o program http://example.com/program && chmod +x program && nohup ./program >/dev/null 2>&1 &
原文地址: https://www.cveoy.top/t/topic/wzb 著作权归作者所有。请勿转载和采集!