• 0 Posts
  • 3 Comments
Joined 1 year ago
cake
Cake day: July 17th, 2023

help-circle
  • While you are right that EVs just move pollution from one place to another, that other place doesn’t have to be a traditional power plant. If we are able to transfer to green energy, like wind, solar, or nuclear, those cars suddenly become a lot better for the environment.

    As for drilling public lands, I strongly disagree. If we can build more green energy sources instead, we will become less reliant on oil and the prices might drop with lower demand. Drilling public land is a great way to ruin the area for years.



  • Since I don’t know the structure of your files, I can’t help entirely, but I would use find/locate to get a list of file paths, then use a script to take that list and use sed for the replacement, like this:

    #!/bin/bash
    for i in ListOfFilePaths.txt
    do
      sed -i "s/oldtext/newtext/g" $i
    done
    

    Please copy the entire line for oldtext and newtext to avoid accidental replacements.

    Also, I am very new to scripting, and this likely has multiple problems with it. I am just throwing out ideas.