aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-fs
blob: c6c1bf81088fd55ac1d36caf9a3163d84bab06eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
##
## Tools to add, get and cat files to/from the Arching Kaos File System
##
## Usage:
##
##    -h, --help                                Prints this help message
##    --add, --import <file>                    Adds/Imports a file to the AKFS system
##    --get, --export <hash> <output file>      Exports a file from the AKFS system
##    --cat <hash>                              Concatenates from given hash
##    --list                                    Lists names and roots available
##
fullprogrampath="$(realpath $0)"
PROGRAM=$(basename $0)
descriptionString="AKFS tools"

source $AK_LIBDIR/_ak_log
source $AK_LIBDIR/_ak_script
source $AK_LIBDIR/_ak_fs

if [ ! -z $1 ]
then
    case $1 in
        -h | --help) _ak_usage; exit;;
        --add|--import) _ak_fs_import $2; exit;;
        --get|--export) _ak_fs_export $2 $3; exit;;
        --cat) _ak_fs_cat $2; exit;;
        --list) _ak_fs_list; exit;;
        * ) _ak_usage;;
    esac
else
    _ak_usage
fi