linux命令
Posted 阿布都日
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux命令相关的知识,希望对你有一定的参考价值。
创建新文件:touch test.sh
添加可执行权限:chmod +x test.sh
编辑文件:gedit test.sh
输出命令:echo "hello world"
正常退出:exit 0
给命令起别名:alias hello="echo ‘hello world‘"
撤销别名:unalias hello
取命令执行结果:echo "the current directory is $(pwd)" | echo "the current directory is `pwd`"
以上是关于linux命令的主要内容,如果未能解决你的问题,请参考以下文章