История изменений
Исправление nerve, (текущая версия) :
$ mv nonexistent.file
mv: missing destination file operand after 'nonexistent.file'
Try 'mv --help' for more information.
$ mv nonexistent.file > /dev/null 2>&1
$ mv nonexistent.file existent.file
mv: cannot stat 'nonexistent.file': No such file or directory
$ mv nonexistent.file existent.file > /dev/null 2>&1
Исправление nerve, :
$ mv nonexistent.file
mv: missing destination file operand after 'nonexistend.file'
Try 'mv --help' for more information.
$ mv nonexistent.file > /dev/null 2>&1
mv nonexistend.file existent.file
mv: cannot stat 'nonexistend.file': No such file or directory
$ mv nonexistend.file existent.file > /dev/null 2>&1
Исходная версия nerve, :
$ mv nonexistent.file > /dev/null 2>&1
$ mv nonexistent.file
mv: missing destination file operand after 'nonexistend.file'
Try 'mv --help' for more information.