こんにちは、
ゼウス・ラーニングパワー 講師Xこと鯨井貴博 です
mvコマンド
-------
mvコマンドは、moveの略で、
ファイルやディレクトリを移動するコマンドです。
また、ファイル名を変更(リネーム)することも出来ます。
実行結果
-------
[root@ForXWindow test]# ls
copy.txt testfile.txt
[root@ForXWindow test]# mv copy.txt /tmp
[root@ForXWindow test]# ls /tmp
copy.txt
[root@ForXWindow test]# ls
testfile.txt
[root@ForXWindow test]# mv testfile.txt testfile2.txt
[root@ForXWindow test]# ls
testfile2.txt
ゼウス・ラーニングパワー 講師Xこと鯨井貴博 です

mvコマンド
-------
mvコマンドは、moveの略で、
ファイルやディレクトリを移動するコマンドです。
また、ファイル名を変更(リネーム)することも出来ます。
実行結果
-------
[root@ForXWindow test]# ls
copy.txt testfile.txt
[root@ForXWindow test]# mv copy.txt /tmp
[root@ForXWindow test]# ls /tmp
copy.txt
[root@ForXWindow test]# ls
testfile.txt
[root@ForXWindow test]# mv testfile.txt testfile2.txt
[root@ForXWindow test]# ls
testfile2.txt