> For the complete documentation index, see [llms.txt](https://wiki.dewaka.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wiki.dewaka.com/cli/install.md).

# install

This is a very useful command for copying files with extra functionality,

* Change permissions

  ```bash
  install -x644 path/to/source path/to/destination
  ```

  Setting permissions to 644 after copying.
* Create directory hierarchies

  ```bash
  install -d path/to/source path/to/destination
  ```

  Here the destination path's directory hierarchies will be created as needed.
