Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. ~
  2. ~
  3. ~
  4. #!/bin/bash
  5. FILE="/home/tripod/.wine/drive_c/users/tripod/Local Settings/Application Data/Warframe/Downloaded/Public/Tools/Launcher.exe.tmp"
  6. FILENEW="/home/tripod/.wine/drive_c/users/tripod/Local Settings/Application Data/Warframe/Downloaded/Public/Tools/Launcher.exe"
  7. echo $FILE
  8. echo $FILENEW
  9. if [ -f "$FILE" ]
  10. then
  11. mv "$FILE" "$FILENEW"
  12. fi
  13. WINEDEBUG=-all msiexec /i /home/tripod/Warframe.msi
  14. ~
  15. ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement