this post was submitted on 26 Aug 2023
34 points (100.0% liked)

Linux

45530 readers
1938 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I'm updating foundry to a version 11 and it broke an ass ton of my assets cause they're all "verified version 10"

So all I have to do is change that number, they're just maps so no need to update anything else, but I have like 400+ files to convert all in individual folders.

Please tell me there's an easy way to do this. (I'm on Linux obviously)

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] -3 points 10 months ago* (last edited 10 months ago) (1 children)

Not sure but you can always ask chatgpt. Probably using something like sed or awk

[–] [email protected] 3 points 10 months ago (1 children)

I would love to see what it spit out if you feed it exactly what OP asked.

[–] [email protected] 1 points 10 months ago (1 children)

This was the response from chatgpt when I coppied OP's exact post. It wasn't too far off:

Yes, there's a way to automate this process using a script. You can use a combination of the find command and sed to search and replace the version number in all your files. Here's a sample command you can use:

find /path/to/assets -type f -name "*.asset" -exec sed -i 's/verified version 10/verified version 11/g' {} +

Replace /path/to/assets with the actual path to your asset folders. This command will recursively search for .asset files and replace "verified version 10" with "verified version 11". Make sure to have a backup of your files before running this command, just in case.

Also, consider testing this on a smaller set of files first to ensure it works as expected before applying it to all 400+ files.

[–] [email protected] 2 points 10 months ago

Cool. Thanks for posting that.