sorry, I'm just not getting it. After typing:
export DISTRO="bullseye"
I do the sudo curl....waydroing.gpg
and it gives me the permission denied thing.
I also tried with "focal" and yielded the same result.
Maybe I'll leave the project for now until I get a better grasp of the terminal.
When invoking `sudo`, you're escalating privileges on the command followed but that doesn't apply to the redirection of output (`>`). So it's saying permission denied to write to the files. You'll need to do something like `curl | sudo tee /path/to/file`. Same with `echo`.