diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-05-27 10:56:40 +0300 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-05-27 10:56:40 +0300 |
commit | 2c9df6a4bfc99559fa741a88b7e3041e2b2f9ee8 (patch) | |
tree | 3317441069b359c4f9347ba99458424ccfcc1e8c /bin | |
parent | 7a52180ec7a2f8b23f29b9a3094c5d015314acc0 (diff) | |
download | arching-kaos-tools-2c9df6a4bfc99559fa741a88b7e3041e2b2f9ee8.tar.gz arching-kaos-tools-2c9df6a4bfc99559fa741a88b7e3041e2b2f9ee8.tar.bz2 arching-kaos-tools-2c9df6a4bfc99559fa741a88b7e3041e2b2f9ee8.zip |
Refactoring
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/ak-fs-add | 8 | ||||
-rwxr-xr-x | bin/ak-sm-hash-to-path | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/bin/ak-fs-add b/bin/ak-fs-add index 0011faf..f22432b 100755 --- a/bin/ak-fs-add +++ b/bin/ak-fs-add @@ -183,16 +183,16 @@ do sed -n "$a"p "$workingIndex" | awk '{ print $1 }' >> level.$c.pair.$a-$b sed -n "$b"p "$workingIndex" | awk '{ print $1 }' >> level.$c.pair.$a-$b shaSum="$(sha512sum level.$c.pair.$a-$b | awk '{ print $1 }')" - mkdir -p $MERKLEDIR/$(_ak_return_hash_dir $shaSum) - cp level.$c.pair.$a-$b $MERKLEDIR/$(_ak_return_hash_path $shaSum) + mkdir -p $MERKLEDIR/$(_ak_fs_return_hash_dir $shaSum) + cp level.$c.pair.$a-$b $MERKLEDIR/$(_ak_fs_return_hash_path $shaSum) sha512sum level.$c.pair.$a-$b | awk '{ print $1 }' >> level.$c.map a=`expr "$a" + 2` done workingIndex="level.$c.map" appendLastIfNotEven "$workingIndex" shaSum=`sha512sum $workingIndex | awk '{ print $1 }'` - mkdir -p $MERKLEDIR/$(_ak_return_hash_dir $shaSum) - cp $workingIndex $MERKLEDIR/$(_ak_return_hash_path $shaSum) + mkdir -p $MERKLEDIR/$(_ak_fs_return_hash_dir $shaSum) + cp $workingIndex $MERKLEDIR/$(_ak_fs_return_hash_path $shaSum) # cp $workingIndex $MERKLEDIR/$shaSum totalChunks=`cat $workingIndex | wc -l` c=`expr $c - 1` diff --git a/bin/ak-sm-hash-to-path b/bin/ak-sm-hash-to-path index f08d4d4..b114b1b 100755 --- a/bin/ak-sm-hash-to-path +++ b/bin/ak-sm-hash-to-path @@ -23,13 +23,13 @@ case "$1" in exit 1 ;; -d | --dir) - _ak_verify_input_is_hash $2 - _ak_return_hash_dir $2 + _ak_fs_verify_input_is_hash $2 + _ak_fs_return_hash_dir $2 exit 0 ;; -p | --path) - _ak_verify_input_is_hash $2 - _ak_return_hash_path $2 + _ak_fs_verify_input_is_hash $2 + _ak_fs_return_hash_path $2 exit 0 ;; *) |