mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 21:03:12 +00:00
1e858eae35
This demonstrates that we only write control sequences when interactive.
11 lines
158 B
Fish
11 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
|