Bug 1338987

Summary: Output of tcsh builtin command "jobs" now goes to stderror.
Product: Red Hat Enterprise Linux 7 Reporter: Paulo Andrade <pandrade>
Component: tcshAssignee: David Kaspar // Dee'Kej <deekej>
Status: CLOSED DUPLICATE QA Contact: BaseOS QE - Apps <qe-baseos-apps>
Severity: medium Docs Contact:
Priority: medium    
Version: 7.3CC: deekej, qe-baseos-apps
Target Milestone: rc   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: If docs needed, set a value
Doc Text:
Story Points: ---
Clone Of: 1338986 Environment:
Last Closed: 2016-05-31 12:52:15 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Paulo Andrade 2016-05-23 20:23:56 UTC
+++ This bug was initially created as a clone of Bug #1338986 +++

Simple reproducer:

---8<---
$ sleep 60 &
[1] 17210
$ jobs -l
[1]  + 17210 Running                       sleep 60
]$ jobs -l > out
[1]  + 17210 Running                       sleep 60
$ cat out
$
$  jobs -l >& err
$ cat err
[1]  + 17210 Running                       sleep 60
---8<---

This is a regression in rhel-6.8, and rhel-7.3, caused by
the patch to correct #1019321 (tcsh prints error message
on standard output instead of stderr).