summaryrefslogtreecommitdiff
path: root/test/test_replace_timestamp.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_replace_timestamp.sh')
-rwxr-xr-xtest/test_replace_timestamp.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/test_replace_timestamp.sh b/test/test_replace_timestamp.sh
new file mode 100755
index 0000000..ffad66e
--- /dev/null
+++ b/test/test_replace_timestamp.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+LOG_DIR="/home/oskar/.trashsys/log"
+
+if [ -z "$1" ]; then
+ echo "Usage: $0 <replacement_string>"
+ exit 1
+fi
+
+REPLACEMENT="$1"
+
+if [ ! -d "$LOG_DIR" ]; then
+ echo "Directory $LOG_DIR does not exist."
+ exit 1
+fi
+
+for file in "$LOG_DIR"/*; do
+ if [ -f "$file" ]; then
+ echo "replacing trashed time in: $file"
+ awk -v replacement="$REPLACEMENT" 'NR % 5 == 0 {print replacement} NR % 5 != 0 {print $0}' "$file" > "$file.tmp" && mv "$file.tmp" "$file"
+ fi
+done
+
+echo "Done."