Я понимаю, что если я mv foo.file boo.file
, я просто переименую foo.file в boo.file, и если я mv dir1/foo.file dir2/boo.file
, я удаляю dir1/foo.file и делаю копию это в dir2 и переименуйте его в boo.file. Но я смотрел на страницу руководства здесь:
NAME
mv -- move files
SYNOPSIS
mv [-f | -i | -n] [-v] source target
mv [-f | -i | -n] [-v] source ... directory
DESCRIPTION
In its first form, the mv utility renames the file named by the source
operand to the destination path named by the target operand. This form
is assumed when the last operand does not name an already existing direc-
tory.
In its second form, mv moves each file named by a source operand to a
destination file in the existing directory named by the directory oper-
and. The destination path for each operand is the pathname produced by
the concatenation of the last operand, a slash, and the final pathname
component of the named file.
У меня есть 2 вопроса:1. Я знаю, что «...» означает повторяемый аргумент, так что если я сделаю mv dir1/foo.file dir2/boo.file dir3/woo.file
, что произойдет?
2. Я не совсем понимаю второй абзац о второй форме о том, что « The destination path for each operand is the pathname produced by the concatenation of the last operand, a slash, and the final pathname component of the named file.
"для каждого операнда" и «конкатенация последнего операнда, косой черты и конечного компонента имени пути указанного файла» означает?
Извините, я знаю, что это глупые вопросы