Skip to content

Instantly share code, notes, and snippets.

@loskutov
Created June 24, 2017 15:04
Show Gist options
  • Save loskutov/4225ee5b33960660a266727d11352cd2 to your computer and use it in GitHub Desktop.
Save loskutov/4225ee5b33960660a266727d11352cd2 to your computer and use it in GitHub Desktop.
Making Steam work on macOS
#!/bin/sh
cd ~/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS
for i in public graphics friends servers steam/cached
do
cd $i
find . -name "*[A-Z]*" -exec sh -c 'ln -s {} `tr "[:upper:]" "[:lower:]" <<< {}`' \;
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment