diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-06-04 18:07:39 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-06-04 18:07:39 +0300 |
commit | 0d1777251dea7d35cd774518959b4377673e1cab (patch) | |
tree | b3d7a15725641c9e3d1d7b45150135e1f8ce9a71 /bin/ak-roadmap | |
parent | 684dd3e038ae90f0fd1f53211ce4d30141e35bf2 (diff) | |
download | arching-kaos-tools-0d1777251dea7d35cd774518959b4377673e1cab.tar.gz arching-kaos-tools-0d1777251dea7d35cd774518959b4377673e1cab.tar.bz2 arching-kaos-tools-0d1777251dea7d35cd774518959b4377673e1cab.zip |
Refactoring, modules directory introduced
- All modules are now stored separately from the rest of the bin/
- You can run them now with `ak -m <module> <args>`
- Files affected:
* bin/ak-articles -> modules/ak-articles
* bin/ak-categories -> modules/ak-categories
* bin/ak-comments -> modules/ak-comments
* bin/ak-files -> modules/ak-files
* bin/ak-folders -> modules/ak-folders
* bin/ak-mixtapes -> modules/ak-mixtapes
* bin/ak-news -> modules/ak-news
* bin/ak-reference -> modules/ak-reference
* bin/ak-repositories -> modules/ak-repositories
* bin/ak-roadmap -> modules/ak-roadmap
* bin/ak-todos -> modules/ak-todos
Diffstat (limited to 'bin/ak-roadmap')
-rwxr-xr-x | bin/ak-roadmap | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/bin/ak-roadmap b/bin/ak-roadmap deleted file mode 100755 index a30894a..0000000 --- a/bin/ak-roadmap +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash -echo "$(basename $0) - Not implemented" -exit 1 - -title(){ - echo "AK Roadmap tool" -} - -usage(){ - title -} - -search(){ - cd $HOME/projects - PRJS="$(ls -1 .)" - for prj in $PRJS - do - if [ -f $prj/ROADMAP.md ]; - then - echo " - Roadmap found in $prj" - fi - done -} - -if [ ! -z $1 ]; -then - case $1 in - -h | --help) usage; exit;; - search) search; exit;; - *) usage; exit;; - esac -else - usage - exit 0 -fi |