commit af120acc67be05581d27f46585aa8220343ec9b8 Author: Alexey Strekalovskiy Date: Fri Jul 15 12:31:30 2016 +0300 Add patch 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 +