aboutsummaryrefslogtreecommitdiff
path: root/lib/_ak_fs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/_ak_fs')
-rwxr-xr-xlib/_ak_fs4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/_ak_fs b/lib/_ak_fs
index dad7dec..a44b852 100755
--- a/lib/_ak_fs
+++ b/lib/_ak_fs
@@ -42,7 +42,9 @@ function _ak_fs_create_dir_for_hash(){
function _ak_fs_appendLastIfNotEven(){
if [ "$(( $(wc -l "$1" | awk '{ print $1 }') % 2))" -ne 0 ]
then
- head -n 1 "$1" >> "$1"
+ tail -n 1 "$1" >> "$1.temp"
+ cat "$1.temp" >> "$1"
+ rm $1.temp
fi
}