| Summary: | possible sort bug | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | George R. Goffe <grgoffe> |
| Component: | coreutils | Assignee: | Ondrej Vasik <ovasik> |
| Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 22 | CC: | admiller, kdudka, kzak, ooprala, ovasik, p, twaugh |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | x86_64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2016-02-03 08:23:33 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: | |
|
Description
George R. Goffe
2016-02-02 19:31:58 UTC
(In reply to George R. Goffe from comment #0) > # this seems to work > > sort -T $sorttmp -S"3g" -uk1 | egrep -v '^$' | egrep '\.com' < 1000s > > 1000s.srtd I guess the only problem is that $sorttmp expands to an empty string. So in the above case "-S3g" is consumed as an operand of the -T option. > # this does not note the blank after "-S" > > sort -T $sorttmp -S "3g" -uk1 | egrep -v '^$' | egrep '\.com' < 1000s > > 1000s.srtd > > sort: cannot read: 3g: No such file or directory In this case, only "-S" is consumed as operand of the -T option. So the string "3g" is interpreted as an input file. |