入力したファイルを移動するとき
$ mv aaa.txt directory
変える
$ mv aaa.txt ../directory
aaa.txt
今どこに行くべきかわかりません。どうやって見つけることができますか?
答え1
2つの可能なシナリオがあります。
(1) 以下があるとする。
├── bar
│ └── aaa.txt
└── foo
そのディレクトリにbar
移動したかったが、次のように入力した場合は現在そのディレクトリにあります。aaa.txt
../foo
mv aaa.txt foo
aaa.txt
foo
bar
├── bar
│ └── foo <- this is your file now
└── foo
(2) あなたが
├── bar
│ ├── aaa.txt
│ └── foo
└── foo
この場合、2つのディレクトリがあります。foo
1つはinsidebar
で、もう1つはです。内部で入力するfoo
と、現在のディレクトリで指定されたディレクトリに移動します。mv aaa.txt
bar
aaa.txt
foo
├── bar
│ └── foo
│ └── aaa.txt <- this is your file now
└── foo