Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- #FILL OUT BOTH DIRECTORIES CORRECTLY BEFORE RUNNING
- #steamdeck save directory will look something like this
- #for yuzu saves the save folder should contain album, solo_##, storage, and option.save
- steamdeck_files="/run/media/mmcblk0p1/Emulation/saves/yuzu/randomdigits/randomdigits/gameid/"
- #usb save directory will look something like this
- #ensure that the last folder in the directory is the folder that contains album, slot_##, storage, and option.save
- usb_files="/run/media/deck/usbdevice/pcsaves/"
- #the -r switch is for coping directories recursively (meaning you can copy directories and files)
- #the -v switch will tell you what has been copied and where
- #this will copy the usb saves to the steamdeck
- cp -r -v $usb_files/* $steamdeck_files/
- #this will copy the steamdeck saves to the usb
- #cp -r -v $steamdeck_files/* $usb_files/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement