linux基本命令-定位及文件操作命令
Posted zzker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux基本命令-定位及文件操作命令相关的知识,希望对你有一定的参考价值。
举例:[root@localhost~]#
定位及文件操作命令:
1、pwd:[root@localhost~]#pwd
/root
2、cd:[root@localhost~]# cd /etc
[root@localhost etc]# pwd
/etc
3、touch:[root@localhost~]#touch *
[root@localhost~]#touch text
4、mkdir:[root@localhost~]#mkdir dirl
[root@localhost~]#mkdir /home/dirl
5、cp:[root@localhost~]#cp -R /etc/apt /tmp
6、mv:[root@localhost~]#mv text /home
[root@localhost~]#mv text text.bak
7、rm:[root@localhost~]#rm text
[root@localhost~]#rm -rf dir2
8、rmdir:[root@localhost~]#rmdir dirl
[root@localhost~]#rrmdir -p dirl/linux
以上是关于linux基本命令-定位及文件操作命令的主要内容,如果未能解决你的问题,请参考以下文章