2020-01-17 22:08:14 +08:00
|
|
|
#RUN: %fish -C 'set -l fish %fish' %s
|
|
|
|
|
|
|
|
$fish -c "echo 1.2.3.4."
|
2019-06-26 02:47:28 +08:00
|
|
|
# CHECK: 1.2.3.4.
|
2020-01-17 22:08:14 +08:00
|
|
|
|
2020-01-24 09:34:46 +08:00
|
|
|
PATH= $fish -c "command a" 2>/dev/null
|
|
|
|
echo $status
|
|
|
|
# CHECK: 127
|
|
|
|
|
2020-01-17 22:08:14 +08:00
|
|
|
PATH= $fish -c "echo (command a)" 2>/dev/null
|
|
|
|
echo $status
|
2020-01-24 09:34:46 +08:00
|
|
|
# CHECK: 127
|
2020-04-01 01:52:56 +08:00
|
|
|
|
|
|
|
if not set -q GITHUB_WORKFLOW
|
|
|
|
$fish -c 'if status --is-login ; echo login shell ; else ; echo not login shell ; end; if status --is-interactive ; echo interactive ; else ; echo not interactive ; end' -i
|
|
|
|
# CHECK: not login shell
|
|
|
|
# CHECK: interactive
|
|
|
|
$fish -c 'if status --is-login ; echo login shell ; else ; echo not login shell ; end; if status --is-interactive ; echo interactive ; else ; echo not interactive ; end' -l -i
|
|
|
|
# CHECK: login shell
|
|
|
|
# CHECK: interactive
|
|
|
|
else
|
2020-10-31 09:23:28 +08:00
|
|
|
# GitHub Action doesn't start this in a terminal, so fish would complain.
|
2020-04-01 01:52:56 +08:00
|
|
|
# Instead, we just fake the result, since we have no way to indicate a skipped test.
|
|
|
|
echo not login shell
|
|
|
|
echo interactive
|
|
|
|
echo login shell
|
|
|
|
echo interactive
|
|
|
|
end
|
|
|
|
|
|
|
|
$fish -c 'if status --is-login ; echo login shell ; else ; echo not login shell ; end; if status --is-interactive ; echo interactive ; else ; echo not interactive ; end' -l
|
|
|
|
# CHECK: login shell
|
|
|
|
# CHECK: not interactive
|
|
|
|
|
|
|
|
$fish -c 'if status --is-login ; echo login shell ; else ; echo not login shell ; end; if status --is-interactive ; echo interactive ; else ; echo not interactive ; end'
|
|
|
|
# CHECK: not login shell
|
|
|
|
# CHECK: not interactive
|
|
|
|
|
|
|
|
$fish -c 'if status --is-login ; echo login shell ; else ; echo not login shell ; end; if status --is-interactive ; echo interactive ; else ; echo not interactive ; end' -l
|
|
|
|
# CHECK: login shell
|
|
|
|
# CHECK: not interactive
|
2020-09-26 20:45:51 +08:00
|
|
|
|
2020-09-26 21:05:26 +08:00
|
|
|
# Arguments for -c
|
2020-09-26 20:45:51 +08:00
|
|
|
$fish -c 'string escape $argv' 1 2 3
|
|
|
|
# CHECK: 1
|
|
|
|
# CHECK: 2
|
|
|
|
# CHECK: 3
|
2020-09-26 21:05:26 +08:00
|
|
|
|
|
|
|
# Two -cs
|
|
|
|
$fish -c 'string escape y$argv' -c 'string escape x$argv' 1 2 3
|
|
|
|
# CHECK: y1
|
|
|
|
# CHECK: y2
|
|
|
|
# CHECK: y3
|
|
|
|
# CHECK: x1
|
|
|
|
# CHECK: x2
|
|
|
|
# CHECK: x3
|