mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-08 11:08:53 +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
|