From b672f3904c2e17833ff5745bdbc16a8f351ff517 Mon Sep 17 00:00:00 2001 From: kaotisk Date: Tue, 11 Jun 2024 14:38:38 +0300 Subject: implementing the ak-template on ak-clean --- bin/ak-clean | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/ak-clean b/bin/ak-clean index c30324e..f69071c 100755 --- a/bin/ak-clean +++ b/bin/ak-clean @@ -1,2 +1,36 @@ #!/bin/bash -rm -rf /tmp/aktmp* +## +## Cleans up temporary directories and files +## +## USE WITH CAUTION: +## Running while there are other arching-kaos-tools running might result +## breaking these. Use it after all your previously issued ak commands +## finish. +## +## Usage: +## +## -h, --help Prints this help message +## +## -c, --clean Removes all /tmp/aktmp* directories +## + +fullprogrampath="$(realpath $0)" +PROGRAM="$(basename $0)" +descriptionString="Cleans ak temp files" + +source $AK_LIBDIR/_ak_script + +_ak_tmp_cleanup(){ + rm -rf /tmp/aktmp* +} + +if [ ! -z $1 ] # && [ -n "$1" ] +then + case $1 in + -h | --help) _ak_usage; exit;; + -c | --clean) _ak_tmp_cleanup; exit;; + *) _ak_usage; + esac +else + _ak_usage +fi -- cgit v1.2.3