diff options
author | Cem Keylan <cem@ckyln.com> | 2020-05-28 16:45:43 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-05-28 16:45:43 +0300 |
commit | 1dabf5a8d511db458dd529588e57a8ed8185787a (patch) | |
tree | c5905caa9b93fa4c63ee5e8e8dbdccd53d5aca53 /README | |
parent | 7bfa97d6fa2452d0517c4f820e44033b5a50cd50 (diff) | |
download | cpt-extra-1dabf5a8d511db458dd529588e57a8ed8185787a.tar.gz |
added new utilities, changed repository structure20200528
Diffstat (limited to 'README')
-rw-r--r-- | README | 23 |
1 files changed, 15 insertions, 8 deletions
@@ -16,14 +16,27 @@ kiss). You can install by doing - for script in kiss-*; do - install -Dm755 "$script" "/usr/local/bin/$script" + find . -type f -name 'kiss-*' | while read -r script; do + install -Dm755 "$script" "/usr/local/bin/${script##*/}" done Or install the `kiss-extra` package on Carbs Linux. +Repository structure +-------------------- + +Scripts are dividied into categoried folders. + + + / + ├── alt - scripts related to the alternatives system. + ├── other - self explanatory + └── repo - scripts for repository management + └── git - scripts for git operations, commit messages etc. + + New Scripts ----------- @@ -54,9 +67,3 @@ Licensing This repository contains scripts that were initially in the package manager itself. Some of these were initially authored by Dylan Araps. License notices are made where needed. - - -Carbs Linux directory ---------------------- - -Carbs Linux directory is for |