Forrest logo
back to context overview

replace

List of commands for replace:

  • replace:tldr:32f8c replace: Replace all files in subdirectories of the destination.
    $ replace ${path\to\file_or_directory} ${path\to\destination_directory} /s
    try on your machine
    explain this command
  • replace:tldr:66a65 replace: Interactively copy multiple files, with a prompt before replacing or adding a destination file.
    $ replace ${path\to\file_or_directory} ${path\to\destination_directory} /p
    try on your machine
    explain this command
  • replace:tldr:786dc replace: Replace only files in the destination directory which are older than the files in the source directory.
    $ replace ${path\to\file_or_directory} ${path\to\destination_directory} /u
    try on your machine
    explain this command
  • replace:tldr:bcc2c replace: Replace even read only files.
    $ replace ${path\to\file_or_directory} ${path\to\destination_directory} /r
    try on your machine
    explain this command
  • replace:tldr:ed47a replace: Replace the destination file with the one from the source directory.
    $ replace ${path\to\file_or_directory} ${path\to\destination_directory}
    try on your machine
    explain this command
  • replace:tldr:f5e4a replace: Add files to the destination directory instead of replacing existing files.
    $ replace ${path\to\file_or_directory} ${path\to\destination_directory} /a
    try on your machine
    explain this command
  • replace:tldr:f85e3 replace: Display detailed usage information.
    $ replace /?
    try on your machine
    explain this command
  • replace:tldr:fec88 replace: Wait for you to insert a disk before it replaces files (originally to allow inserting a floppy disk).
    $ replace ${path\to\file_or_directory} ${path\to\destination_directory} /w
    try on your machine
    explain this command
back to context overview