mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 12:15:28 +08:00
1e858eae35
This demonstrates that we only write control sequences when interactive.
16 lines
309 B
Fish
16 lines
309 B
Fish
#RUN: %fish --features=ampersand-nobg-in-token -C 'set -g fish_indent %fish_indent' %s
|
|
|
|
echo no&background
|
|
# CHECK: no&background
|
|
|
|
echo background&
|
|
# CHECK: background
|
|
|
|
echo background &
|
|
# CHECK: background
|
|
|
|
wait
|
|
|
|
echo no&bg | fish_features=ampersand-nobg-in-token $fish_indent --check
|
|
echo $status #CHECK: 0
|