pwd
/root
ls
anaconda-ks.cfg movie vedio
ls -a
. .. anaconda-ks.cfg .bash_history .bash_logout .bash_profile .bashrc .cshrc movie .tcshrc vedio
ls -l
总用量 4
-rw-------. 1 root root 1429 3月 27 20:49 anaconda-ks.cfg
drwxr-xr-x. 2 root root 6 3月 29 21:58 movie
drwxr-xr-x. 2 root root 21 3月 29 22:05 vedio
mkdir test
mkdir -p new/dir :父级别目录不存在时候必须使用 -p
rmdir test
rmdir -p new/dir/
cp 123.txt /root/movie/456.txt :将当前目录下的123.txt 复制到后面路径并使用456.txt为名称
cp -r movie /root/vedio :将当前目录下的movie以及子文件,复制到绝对路径vedio下面
mv 456.txt /root : 将当前目录下的456.txt移动到 绝对路径下
mv 456.txt /root/movie/789.txt :将当前目录下的456.txt移动到绝对路径,并且重命名为 789.txt
rm movie
rm -rf movie
原文:https://www.cnblogs.com/init-qiancheng/p/14592275.html