aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/read.sh
diff options
context:
space:
mode:
authorOrfeas <38209077+0xfea5@users.noreply.github.com>2024-04-21 16:27:55 +0300
committerOrfeas <38209077+0xfea5@users.noreply.github.com>2024-04-21 16:32:47 +0300
commitc79bbdb0448501987c0c16c2877c780143156d1e (patch)
treeff518148959a27e0efa655b3e40c4efea074a383 /scripts/read.sh
parentWrite other process' memory (diff)
downloadlinux-game-trainer-c79bbdb0448501987c0c16c2877c780143156d1e.tar.gz
linux-game-trainer-c79bbdb0448501987c0c16c2877c780143156d1e.zip
Changes in trainer interface, bug fixes & helper scripts
Diffstat (limited to 'scripts/read.sh')
-rw-r--r--scripts/read.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/read.sh b/scripts/read.sh
new file mode 100644
index 0000000..38535e6
--- /dev/null
+++ b/scripts/read.sh
@@ -0,0 +1,11 @@
1#!/bin/bash
2
3if [ "$#" -ne 1 ]
4then
5 printf "Usage: %s <tracee_pid>\n" "$0"
6 exit 1
7fi
8
9scanfile=${SCANFILE:-/tmp/scanfile}
10pid="$1"
11watch -d -n 1 "xargs -r -a ${scanfile} ./hack.out ${pid} read 8 > /tmp/out 2> /dev/null && pr -t -m ${scanfile} /tmp/out"