Page MenuHomeFreeBSD

freebsd-update: open $PAGER only if necessary
ClosedPublic

Authored by aryeeteygerald_rogers.com on Jan 21 2019, 5:55 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Sep 3, 9:56 PM
Unknown Object (File)
Fri, Aug 28, 12:02 AM
Unknown Object (File)
Fri, Aug 21, 11:14 AM
Unknown Object (File)
Thu, Aug 20, 3:06 AM
Unknown Object (File)
Thu, Aug 20, 3:06 AM
Unknown Object (File)
Thu, Aug 20, 3:06 AM
Unknown Object (File)
Aug 9 2026, 2:22 PM
Unknown Object (File)
Aug 9 2026, 12:38 PM

Details

Reviewers
emaste
delphij
Summary

Previously, the $PAGER was opened even with no contents.
Applies patch to no longer do this.

PR: 194547,208497

Test Plan

Verified expected behaviour in interactive sh shell

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 22073
Build 21300: arc lint + arc unit

Event Timeline

delphij requested changes to this revision.Jan 22 2019, 5:26 AM

I like this change in principle, but I think you could simplify the code a little bit (see my comments in line).

usr.sbin/freebsd-update/freebsd-update.sh
1953

Could you please refactor this to something like:

cat - modifiedfiles <<- EOF | ${PAGER}

The following files are affected by updates,
but no changes have
...
EOF

instead?

This revision now requires changes to proceed.Jan 22 2019, 5:26 AM
  • Use HEREDOC/cat instead of multiple echos

This is indeed much nicer.

One last change request -- could you please use ${PAGER} instead of $PAGER while there? The change looks otherwise fine to me.

This revision is now accepted and ready to land.Jan 24 2019, 5:51 AM

Forgot the review link; committed in rS343407