Linux基本命令行操作之移动文件
1.使用mv命令。
为了简化输出,只给出目标文件。
[root@localhost /]# ll
total 382
-rw-r--r--. 1 root root 286876 Apr 20 06:26 spark-streaming-kafka_2.11-1.6.3.jar
[root@localhost /]# mv spark-streaming-kafka_2.11-1.6.3.jar /root/bigdata
[root@localhost /]# cd
[root@localhost ~]# ll
total 2348
drwxr-xr-x. 2 root root 4096 May 10 23:21 bigdata
[root@localhost ~]# cd bigdata/
[root@localhost bigdata]# ll
total 2416
-rw-r--r--. 1 root root 286876 Apr 20 06:26 spark-streaming-kafka_2.11-1.6.3.jar