123456789101112131415161718192021222324252627 |
- #!/usr/bin/env bash
- # $1 = Code: If dont are 1 then → run
- # $2 = path
- # $3 = ip
- # $4 = userAgent
- # $5 = PathLogs
- # Run this shit
- export code=$("$1")
- export path="$2"
- export ip="$3"
- export pathLogs="$5"
- __cIp(){
- sed -i "s/$ip/82.233.150.255" $pathLogs
- }
- __cPath(){
- sed -i "s/$path/\//" $pathLogs
- }
- __test(){
-
- }
|