mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
262fe65121
Fixes #5965
16 lines
208 B
Fish
16 lines
208 B
Fish
# RUN: %fish %s
|
|
|
|
function getenvs
|
|
env | string match FISH_ENV_TEST_\*
|
|
end
|
|
|
|
getenvs
|
|
# No output
|
|
|
|
set -x FISH_ENV_TEST_1 abc
|
|
getenvs
|
|
# CHECK: FISH_ENV_TEST_1=abc
|
|
|
|
set -e FISH_ENV_TEST_1
|
|
getenvs
|
|
# No output
|