11 lines
524 B
Bash
Executable File
11 lines
524 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Running this while the game is open works, but you must exit to the title screen for the songs to appear"
|
|
echo
|
|
echo "Moving all game DLCs from Downloads to DLC Folder"
|
|
# First move to "RocksmithCLDC" to chmod
|
|
cp /home/allen/Downloads/*.psarc /home/allen/Downloads/RSCDLCBackup/
|
|
mv /home/allen/Downloads/*.psarc /home/allen/Downloads/RocksmithCDLC/
|
|
chmod -R 755 /home/allen/Downloads/RocksmithCDLC/
|
|
mv /home/allen/Downloads/RocksmithCDLC/* /home/allen/.local/share/Steam/steamapps/common/Rocksmith2014/dlc
|