You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
211 B
Bash

8 years ago
#!/bin/bash
input=$1
output=$2
if [ -z $1 ]; then
echo "Require params - example: ./patch.sh <input file> <output file>"
exit
fi
sed 's/\x85\xC0\x89\xC5\x75\x18/\x29\xC0\x89\xC5\x90\x90/g' $input > $output