I'm wondering whether this (From https://www.digitalocean.com/community/tutorials/how-to-read-and-set-environmental-and-shell-variables-on-a-linux-vps):
env VAR1="blahblah" command_to_run command_options
Is the same thing as:
VAR1="blahblah"
export VAR1
command_to_run ...