mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-05 09:43:42 +08:00
0c74ff4209
See #6650. This reverts commit1410f938aa
. (cherry-picked from commmit91fcb8c42c
)
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
|