I have a shell script containing a single command
sudo my_command | parse_to_exports_cmd
when I run this script I get the following on stdout
export MY_VAR_A=abcdef123
export MY_VAR_B=qwerty123
How would I modify my script to actually set these environment variables within the parent shell?