Re: The mv command
[email protected] (Bob Proulx)
| Newsgroups | gmane.comp.gnu.textutils.bugs |
|---|---|
| Message-ID | <[email protected]> |
> mv -b filename filename1 does not produce backup of filename1, ie filename1~ > in the home directory. Are you aware of this problem ? It only produces a backup if filename1 previously existed. If no file would be overwritten then no backup is made. Try this. touch filenam1 mv -b filename filename1 Bob