Skip to content

Instantly share code, notes, and snippets.

@abelmferreira
Created January 15, 2018 00:30
Show Gist options
  • Save abelmferreira/717c01c3744a362c5c90c885071c0f4d to your computer and use it in GitHub Desktop.
Save abelmferreira/717c01c3744a362c5c90c885071c0f4d to your computer and use it in GitHub Desktop.
Fix Steam Case Sensitive Volume Install
#!/bin/bash
## Try to use following solution.
## ------------------------------------
USER=$(whoami)
echo $USER
echo 'step 1'
cd /Users/$USER/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/public; ls *.res | while read line ; do file=$(echo $line | tr '[:upper:]' '[:lower:]'); mv $line $file; done
echo 'step 2'
cd /Users/$USER/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/steam/cached/; ls *.res | while read line ; do file=$(echo $line | tr '[:upper:]' '[:lower:]'); mv $line $file; done
echo 'step 3'
cd /Users/$USER/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/friends; ls *.res | while read line ; do file=$(echo $line | tr '[:upper:]' '[:lower:]'); mv $line $file; done
echo 'step 4'
cd /Users/$USER/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/graphics; ls *.res | while read line ; do file=$(echo $line | tr '[:upper:]' '[:lower:]'); mv $line $file; done
echo 'step 5'
cd /Users/$USER/Library/Application\ Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/servers; ls *.res | while read line ; do file=$(echo $line | tr '[:upper:]' '[:lower:]'); mv $line $file; done
## ------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment