diff --git a/sources/remove_DMCA.sh b/sources/remove_DMCA.sh new file mode 100755 index 0000000000..2582f4a5b2 --- /dev/null +++ b/sources/remove_DMCA.sh @@ -0,0 +1,7 @@ +#!/bin/bash +domain="$1" +git checkout -b "$domain" +git grep -l "$domain"|while read file; do git rm "$file"; done +git commit -a -m "remove $domain" +git push -u origin "$domain" +git checkout master