Forrest logo
back to context overview

install

List of commands for install:

  • install:tldr:4de0a install: Copy files to the destination, setting their `mode`.
    $ install --mode ${+x} ${path-to-source_file1 path-to-source_file2 ---} ${path-to-destination}
    try on your machine
    explain this command
  • install:tldr:56bfb install: Copy files and apply access/modification times of source to the destination.
    $ install --preserve-timestamps ${path-to-source_file1 path-to-source_file2 ---} ${path-to-destination}
    try on your machine
    explain this command
  • install:tldr:9606c install: Copy files to the destination, setting their group ownership.
    $ install --group ${user} ${path-to-source_file1 path-to-source_file2 ---} ${path-to-destination}
    try on your machine
    explain this command
  • install:tldr:b67fc install: Copy files to the destination.
    $ install ${path-to-source_file1 path-to-source_file2 ---} ${path-to-destination}
    try on your machine
    explain this command
  • install:tldr:d2f79 install: Copy files to the destination, setting their ownership.
    $ install --owner ${user} ${path-to-source_file1 path-to-source_file2 ---} ${path-to-destination}
    try on your machine
    explain this command
  • install:tldr:e50f2 install: Copy files and create the directories at the destination if they don't exist.
    $ install -D ${path-to-source_file1 path-to-source_file2 ---} ${path-to-destination}
    try on your machine
    explain this command
back to context overview