Export environment variable WSL.

10 ビュー (過去 30 日間)
Antoine Legouhy
Antoine Legouhy 2021 年 8 月 6 日
回答済み: Yongjian Feng 2021 年 8 月 6 日
Hi,
I have Windows Subsystem for Linux (WSL).
In a Matlab script, I want to run some bash commands and scripts, so I do:
system('wsl <script>')
But doesn't work when trying to export an environment variable:
system('wsl export FREESURFER_HOME=\"~/freesurfer\"')
system('wsl echo ${FREESURFER_HOME}')
This returns 0 for both lines (no error) but yet the variable FREESURFER_HOME is not exported.
I also tried to use the setenv command but this adds the variable to the windows environment, not the WSL one:
setenv('FREESURFER_HOME', "~/freesurfer");
system('wsl ${FREESURFER_HOME}') % WSL
% -> *nothing*
system('echo %FREESURFER_HOME%') % Windows
% -> ~/freesurfer\
Any idea on how to export an environment variable in the WSL environment ?
Thanks

回答 (1 件)

Yongjian Feng
Yongjian Feng 2021 年 8 月 6 日
This is how you set env in wsl:
https://dev.to/kapilgorve/set-environment-variable-in-windows-and-wsl-linux-in-terminal-3mg4

カテゴリ

Help Center および File ExchangeC Shared Library Integration についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by