From af120acc67be05581d27f46585aa8220343ec9b8 Mon Sep 17 00:00:00 2001 From: Alexey Strekalovskiy Date: Fri, 15 Jul 2016 12:31:30 +0300 Subject: [PATCH] Add patch --- patch.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 patch.sh diff --git a/patch.sh b/patch.sh new file mode 100644 index 0000000..0644e89 --- /dev/null +++ b/patch.sh @@ -0,0 +1,9 @@ +#!/bin/bash +input=$1 +output=$2 +if [ -z $1 ]; then + echo "Require params - example: ./patch.sh " + exit +fi +sed 's/\x85\xC0\x89\xC5\x75\x18/\x29\xC0\x89\xC5\x90\x90/g' $input > $output +