Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nls/move.en
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
0.5:source1[, source2[,...]] destination
0.6: source The name of the file or directory you want to move (rename)
0.7: destination Where you want to move the file(s) to
0.8: Supresses prompting to confirm you want to overwrite
0.8: Suppresses prompting to confirm you want to overwrite
0.9: an existing destination file.
0.10: Causes prompting to confirm you want to overwrite an
0.11: existing destination file.
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MOVE source1[, source2[,...]] destination

source The name of the file or directory you want to move (rename)
destination Where you want to move the file(s) to
/Y Supresses prompting to confirm you want to overwrite
/Y Suppresses prompting to confirm you want to overwrite
an existing destination file.
/-Y Causes prompting to confirm you want to overwrite an
existing destination file.
Expand Down
2 changes: 1 addition & 1 deletion src/move.c
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ static void Usage(char switchch)
PRINTF("%s\n", catgets(cat, 0,6," source The name of the file or directory you want to move (rename)"));
PRINTF("%s\n", catgets(cat, 0,7," destination Where you want to move the file(s) to"));
PRINTF(" %cY%s\n",switchch,
catgets(cat, 0,8," Supresses prompting to confirm you want to overwrite"));
catgets(cat, 0,8," Suppresses prompting to confirm you want to overwrite"));
PRINTF("%s\n", catgets(cat, 0,9," an existing destination file."));
PRINTF(" %c-Y%s\n",switchch,
catgets(cat, 0,10," Causes prompting to confirm you want to overwrite an"));
Expand Down