83Linux 系统管理(CentOS)--操作文件和通配符

目标

请你登录实验环境后,立即在命令行中键入如下命令序列来建立实验环境:

wget http://labfile.oss.aliyuncs.com/courses/818/02.sh
chmod 700 ./02.sh
./02.sh

请你在 Bash 中完成如下任务:
在当前用户(shiyanlou)家目录下建 Project 目录,在此目录下分别建立 src、bin、res、doc 和 log 子目录,其中在 res 下分别再建立 image、sound 和 animation 子目录。
将位于 /home/shiyanlou/tmp/yinyue 目录中的音乐(后缀名为 .ogg 的文件),/home/shiyanlou/tmp/tupian 目录中图片(后缀名为 .jpg 的文件)和 /home/shiyanlou/tmp/donghua 动画(后缀名为 .mov 的文件)分别拷贝到 res 目录下的 sound、image 和 animation 子目录中。
将实验环境提供的源代码录目 /home/shiyanlou/tmp/yuanma 中的所有 java 文件剪切到 src 目录中
在 log 目录下创建一个名为 debug.log 文件。
删除 1 中下载到当前家目录下的 02.sh 文件,删除当前家目录下的 xfce 目录。
列出 animation 子目录中大小最小,且名字(按字母(数字)降序)排序最靠前的那个动画文件(提示:用 ls 命令),将其拷贝到 Project 目录中,并命名为 min.mov.

拓展

你可以点击这个链接 bash 之通配符, 来对 bash 中的通配符作一个初步了解。
文件硬链接(Hard Link)和符号链接(Symbolic Link)
你可以点击这个链接 理解 Linux 的硬链接与软链接, 来对 Linux 中的硬链接和符号链接作进一步了解。

你可能感兴趣的:(83Linux 系统管理(CentOS)--操作文件和通配符)