1
0
Fork 0
local-bin/README.md

17 lines
282 B
Markdown
Raw Permalink Normal View History

2022-03-26 22:57:43 +00:00
# local-bin
Set of scripts to drop to `/usr/local/bin` or `~/.local/bin`.
## Installation
```shell
# Copy
2022-06-20 14:51:46 +00:00
sudo cp bin/* /usr/local/bin/
2022-06-20 14:51:46 +00:00
# Restrict changes
chown root:root /usr/local/bin/*
# (optional, if needed) Making sure scripts are executable
chmod +x /usr/local/bin/*
```