Add Arma 3 (generic) (#203)

This commit is contained in:
Greelan
2023-03-07 05:50:50 +11:00
committed by GitHub
parent c62be0ac90
commit 89fb007715
7 changed files with 1451 additions and 0 deletions

6
arma3modscript.sh Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/bash
find ./arma3/233780/steamapps/workshop/content/107410/ -type f -name "*[A-Z]*" -print0 |\
xargs -0 -I {} bash -c "mv \"{}\" \"\`echo {} | sed 's,\(.*\)\/\(.*\),\1\/\L\2,'\`\"" &&\
cd ./arma3/233780 &&\
find ./steamapps/workshop/content/107410 -maxdepth 1 -mindepth 1 -type d -exec ln -sf -t ./ {} +
exit 0