out-of-date.1 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .\" $OpenBSD: out-of-date.1,v 1.5 2015/07/23 08:05:18 bentley Exp $
  2. .\"
  3. .\" Copyright (c) 2011 Marc Espie <espie@openbsd.org>
  4. .\"
  5. .\" Permission to use, copy, modify, and distribute this software for any
  6. .\" purpose with or without fee is hereby granted, provided that the above
  7. .\" copyright notice and this permission notice appear in all copies.
  8. .\"
  9. .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  10. .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  11. .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  12. .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  13. .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  14. .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  15. .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. .\"
  17. .Dd $Mdocdate: July 23 2015 $
  18. .Dt OUT-OF-DATE 1
  19. .Os
  20. .Sh NAME
  21. .Nm out-of-date
  22. .Nd compare installed packages and the ports tree
  23. .Sh SYNOPSIS
  24. .Nm out-of-date
  25. .Bk -words
  26. .Op Fl mqxv
  27. .Ek
  28. .Sh DESCRIPTION
  29. .Nm
  30. checks installed packages and compares them to the ports tree.
  31. It displays packages that may need updating.
  32. Typical output is a subdirlist with comments, suitable for bulk building.
  33. .Pp
  34. Options are as follows:
  35. .Bl -tag -width pkgpathlonger
  36. .It Fl m
  37. Causes
  38. .Nm
  39. to always display the progress meter in cases it would not do so by default.
  40. .It Fl q
  41. Quick check, only verifies the names and not full update signatures.
  42. Use is discouraged.
  43. .It Fl v
  44. Verbose mode.
  45. Does not do anything yet.
  46. .It Fl x
  47. Disable progress meter.
  48. .El
  49. .Sh AUTHORS
  50. .An Bernd Ahlers