I have several workspaces that have unique environments.
When I load a workspace, I would like to update the linux $PATH accordingly, however, I tried the following:
### workspace.code-workspace
{
    "folders": [
        {
            "path": "."
        }
    ],
    "settings": {},
    "tasks": [
        {
          "command": "export $PATH=${workspaceFolder}/bin:$PATH"
        }
      ]
}
Which fails according to:
me@pc:~/Containers/cuda_devcon/project$ ls -alvh ./bin/julia 
lrwxrwxrwx 1 me me 21 Jan 29 17:38 ./bin/julia -> julia-1.6.7/bin/julia
me@pc:~/Containers/cuda_devcon/project$ which julia
me@pc:~/Containers/cuda_devcon/project$ julia
Command 'julia' not found, but can be installed with:
sudo snap install julia  # version 1.8.5, or
sudo apt  install julia  # version 1.4.1+dfsg-1
See 'snap info julia' for additional versions. 
