`install` as a command is provided to the system through the GNU Core utilities. It places an artifact to the specified directory in the filesystem with a specified set of permissions.
The below command is an example of using the install command to place the bello shell script we have in the `/usr/bin` directory with full permissions to the user, and read+execute permissions to the group and all users.
```bash
sudo install -m 0755 bello /usr/bin/bello
```
We can add an install directive to our make files so that we can run `make install`. _note make files are usually written by the developer and not the packager_