diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-12-13 01:29:23 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-12-13 01:29:23 +0200 |
commit | 171d790e4492dc3063cd7874ce45a68ce8cf3665 (patch) | |
tree | 005c0b17afceae13c6811d0c86ee8eb88177dd9d /lib/_ak_fs | |
parent | 076c7d85267d927d5119c23adb2d880b3caf6f4e (diff) | |
download | arching-kaos-tools-171d790e4492dc3063cd7874ce45a68ce8cf3665.tar.gz arching-kaos-tools-171d790e4492dc3063cd7874ce45a68ce8cf3665.tar.bz2 arching-kaos-tools-171d790e4492dc3063cd7874ce45a68ce8cf3665.zip |
Outputs now are hash of the map, hash of root and original filename
Diffstat (limited to 'lib/_ak_fs')
-rwxr-xr-x | lib/_ak_fs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -337,7 +337,7 @@ function _ak_fs_list(){ then find $AK_MAPSDIR -type f | while read fina do - cat $fina | tr '\n' ' ' | awk '{ print $3 " " $2 }' + cat $fina | tr '\n' ' ' | awk '{ print "'$(basename ${fina})' " $3 " " $2 }' done else _ak_log_debug "Making ${AK_MAPSDIR} directory" |