diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-12-14 01:35:36 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-12-14 01:35:36 +0200 |
commit | 52f1a914b38384aa347ce39c8ce061090f056c3e (patch) | |
tree | d20259ee6c3a83274ee3f07b337485fb7b90e578 /bin/ak-fs | |
parent | 48ca4f56a0d4b891ca0546aacdd8d3e54eb2e1b1 (diff) | |
download | arching-kaos-tools-52f1a914b38384aa347ce39c8ce061090f056c3e.tar.gz arching-kaos-tools-52f1a914b38384aa347ce39c8ce061090f056c3e.tar.bz2 arching-kaos-tools-52f1a914b38384aa347ce39c8ce061090f056c3e.zip |
AKFS with networking capabilities
Diffstat (limited to 'bin/ak-fs')
-rwxr-xr-x | bin/ak-fs | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -25,6 +25,10 @@ then --add|--import) _ak_fs_import $2; exit;; --get|--export) _ak_fs_export $2 $3; exit;; --cat) _ak_fs_cat $2; exit;; + --net-cat) _ak_fs_net_cat $2; exit;; + --net-get) _ak_fs_net_get $2; exit;; + --net-cat-from-map) _ak_fs_net_cat_from_map_hash $2; exit;; + --net-get-from-map) _ak_fs_net_get_from_map_hash $2; exit;; --list) _ak_fs_list; exit;; * ) _ak_usage;; esac |