mirror of
https://github.com/a2-4am/4cade.git
synced 2024-11-05 18:06:52 +00:00
5 lines
143 B
Bash
Executable File
5 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
|
|
tr "\*\~\<\>\$\%" "\020\021\010\025\016\017" < "$1" | \
|
|
awk '!/^\[/ { printf "%c%s", length, $0 } END { printf "\xFF" }' > "$2"
|