mirror of
https://github.com/GeyserMC/GeyserOptionalPack.git
synced 2025-12-19 14:59:14 +00:00
9 lines
299 B
Bash
Executable File
9 lines
299 B
Bash
Executable File
wget https://launcher.mojang.com/v1/objects/37fd3c903861eeff3bc24b71eed48f828b5269c8/client.jar
|
|
unzip client.jar -d extracted/
|
|
while read p; do
|
|
readarray -d , -t filesToCopy<<< "$p"
|
|
mkdir -p filesToCopy[1]
|
|
cp filesToCopy[0] filesToCopy[1]
|
|
done <required_files.txt
|
|
rm client.jar
|
|
rm -r extracted |