diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-03-18 02:07:52 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-03-18 02:07:52 +0200 |
commit | 759e6efd5cd5ad0c3d0d0ca3fe0c053311e92de0 (patch) | |
tree | cf521106526cf5b732ce3f4c3cea027ab35fa5e7 /bin/ak-articles | |
parent | 8c63f5493b101b1af9653c2af120c56d98c811a4 (diff) | |
download | arching-kaos-tools-759e6efd5cd5ad0c3d0d0ca3fe0c053311e92de0.tar.gz arching-kaos-tools-759e6efd5cd5ad0c3d0d0ca3fe0c053311e92de0.tar.bz2 arching-kaos-tools-759e6efd5cd5ad0c3d0d0ca3fe0c053311e92de0.zip |
Renamed lib logit to _ak_logit
Affected scripts:
- ak
- ak-articles
- ak-categories
- ak-comments
- ak-data-expand
- ak-enter
- ak-files
- ak-find-latest-mined-sblock
- ak-folders
- ak-follow
- ak-following
- ak-fs-add
- ak-ipfs-check
- ak-ipns-resolve
- ak-news
- ak-profile
- ak-schain-latest-cached
- ak-sm-files
- ak-sm-filesplitter
- ak-stellar-get-participants
- ak-tempassin
- ak-todos
- ak-transactions
- ak-zblock-cache
- ak-zblock-manipulator
- ak-zblock-pack
- ak-zblock-show
- ak-zchain-chk
Diffstat (limited to 'bin/ak-articles')
-rwxr-xr-x | bin/ak-articles | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/bin/ak-articles b/bin/ak-articles index 248f425..4b76776 100755 --- a/bin/ak-articles +++ b/bin/ak-articles @@ -3,23 +3,7 @@ PROGRAM=$(basename $0) descriptionString="Articles module for Arching Kaos" -source $AK_LIBDIR/logit - -new_line(){ - printf '\n' -} -description(){ - full_title="$(printf '%s - %s' "$PROGRAM" "$descriptionString")" - delimiter_count=`echo -n $full_title | wc -c` - printf '%s' "$full_title" - new_line - while [ $delimiter_count -gt 0 ] - do - printf '=' - delimiter_count=$(($delimiter_count-1)) - done - new_line -} +source $AK_LIBDIR/_ak_logit ZARTICLESDIR="$AK_WORKDIR/articles" TEMP="/tmp/aktmp" |