can seem to export environment variable from bash script
I am working on a remote server through putty and am trying to set certain environment variables:
#!/bin/bash
VAR="SOME VALUE"
export $VAR
when I exit the script and run echo on $VAR, I am given a blank line.