mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 23:04:22 +08:00
12 lines
158 B
Fish
12 lines
158 B
Fish
# RUN: %fish %s
|
|
|
|
# Ensure that jobs are printed with new lines escaped
|
|
|
|
sleep \
|
|
100 &
|
|
|
|
jobs
|
|
#CHECK: Job Group{{.*}}
|
|
# CHECK: 1{{.*\t}}sleep \\\n100 &
|
|
kill %1
|