tar cvf 打包名 需要打包的文件 gcc -c test.cpp 编译test.cpp文件,并生成test.o文件 gcc test.o -o main 链接test.o,并生成main可执行文件 ./main 运行可执行main文件