树莓派:指令学习

用到指令:

mkdir test  --创建test目录

touch helloworld.c  --创建.c文件

rm helloworld.c --删除文件

gcc helloworld.c -o test --生成可执行文件test

mv file1 file2  --将file1重命名或者移动到file2

./test  --执行test

猜你喜欢

转载自blog.csdn.net/ruson525/article/details/78732206