Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 873 Bytes

TUTORIAL.md

File metadata and controls

21 lines (11 loc) · 873 Bytes

Easy way to get all .dxvk-cache.

get-dxvk-caches.sh

GUI:

Download script->move to directory->make it executable->use it.

Terminal:

without script:

mkdir -p ~/dxvk-caches; cd directory; find . -name '*.dxvk-cache' -type f -print0 | xargs -0 -I{} cp {} ~/dxvk-caches/

with script:

chmod +x get-dxvk-caches.sh; mv get-dxvk-caches.sh directory; cd directory; ./get-dxvk-caches.sh

Your caches will be copied to ~/dxvk-caches, that's all!

Credit: blade (find.. command).