7 lines
No EOL
196 B
Bash
Executable file
7 lines
No EOL
196 B
Bash
Executable file
#!/bin/bash
|
|
|
|
curl https://data.tudbut.de/mobf.jar > mobf.jar
|
|
for file in "$@" ; do
|
|
echo "$file"
|
|
java -jar mobf.jar !mixins !org/ !spotify !google !sun !oshi -k $MOBFARGS "$file" || exit 1
|
|
done |