netcache.1 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .Dd August 27, 2023
  2. .Dt NETCACHE 1
  3. .Os
  4. .
  5. .Sh NAME
  6. .Nm netcache
  7. .Nd local Internet cache handler for offpunk
  8. .
  9. .Sh SYNOPSIS
  10. .Nm
  11. .Op Fl \-path
  12. .Op Fl \-offline
  13. .Op Fl \-max\-size Ar MAX_SIZE
  14. .Op Fl \-timeout Ar TIMEOUT
  15. .Op Ar URL ...
  16. .Nm
  17. .Fl h | \-help
  18. .
  19. .Sh DESCRIPTION
  20. Netcache is the download and cache management engine of the browser
  21. .Xr offpunk 1 .
  22. It allows one to fetch a link and get its content,
  23. writing the content through the local cache for ulterior reference.
  24. Netcache can be forced into offline mode,
  25. in order to only fetch resources from the local cache,
  26. otherwise it would always refresh it from the version available online.
  27. It is also useful for mapping a given URL to its location in the cache,
  28. independently of whether it has been downloaded first.
  29. .Pp
  30. .Xr Offpunk 1
  31. is a command-line browser and feed reader dedicated to browsing the Web,
  32. Gemini, Gopher and Spartan.
  33. .Ss Positional arguments
  34. .Bl -tag -width Ds -offset indent
  35. .It Ar URL
  36. download the URL and output the content.
  37. .El
  38. .Ss Keyword arguments
  39. .Bl -tag -width Ds -offset indent
  40. .It Fl h , \-help
  41. show a help message and exit.
  42. .It Fl \-path
  43. output the path to the cache instead of the content of the URL.
  44. .It Fl \-max-size Ar MAX_SIZE
  45. cancel download of items above that size.
  46. The value is expressed in megabytes.
  47. .It Fl \-timeout Ar TIMEOUT
  48. time to wait before cancelling connection.
  49. The value is expressed in seconds.
  50. .El
  51. .
  52. .Sh EXIT STATUS
  53. .Ex -std
  54. .
  55. .Sh SEE ALSO
  56. .Xr ansicat 1 ,
  57. .Xr migrate-offpunk-cache 1 ,
  58. .Xr offpunk 1 ,
  59. .Xr opnk 1 ,
  60. .Lk https://sr.ht/~lioploum/offpunk/
  61. .
  62. .Sh AUTHORS
  63. .An Lionel Dricot (Ploum) Aq Mt offpunk2 at ploum.eu