Skip to content

Instantly share code, notes, and snippets.

View DDoSolitary's full-sized avatar
📚
Doing homework

DDoSolitary DDoSolitary

📚
Doing homework
View GitHub Profile
@DDoSolitary
DDoSolitary / normalize-ass-font.sh
Last active August 10, 2017 15:36
Normalize font settings for ass subtitle files
#!/bin/bash
for i in *.ass; do
sed -i "s/\(\\\\fn@\?\)[^\}]*/\1$FONT/g" "$i"
sed -i "s/^\(Style: [^,]*,@\?\)[^,]*/\1$FONT/" "$i"
done