All user data for FoundryVTT. Includes worlds, systems, modules, and any asset in the "foundryuserdata" directory. Does NOT include the FoundryVTT installation itself.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
143 B

  1. #!/bin/bash
  2. # Build a list of all file names that have been moved
  3. assets=()
  4. for asset in assets/*
  5. do
  6. assets+=$(basename -- "$asset")
  7. done