mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-31 23:28:45 +00:00
15 lines
185 B
Fish
15 lines
185 B
Fish
|
# RUN: %fish %s
|
||
|
echo 'a | b' | read -lt a b c
|
||
|
|
||
|
set -l
|
||
|
# CHECK: a a
|
||
|
# CHECK: b '|'
|
||
|
# CHECK: c b
|
||
|
|
||
|
echo 'a"foo bar"b' | read -lt a b c
|
||
|
|
||
|
set -l
|
||
|
# CHECK: a 'afoo barb'
|
||
|
# CHECK: b
|
||
|
# CHECK: c
|