Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games/fortune/datfiles add some tips



details:   https://anonhg.NetBSD.org/src/rev/516a5a13d33c
branches:  trunk
changeset: 983743:516a5a13d33c
user:      nia <nia%NetBSD.org@localhost>
date:      Fri Jun 04 10:56:55 2021 +0000

description:
add some tips

diffstat:

 games/fortune/datfiles/netbsd-tips |  18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diffs (25 lines):

diff -r 41f7485f4ee0 -r 516a5a13d33c games/fortune/datfiles/netbsd-tips
--- a/games/fortune/datfiles/netbsd-tips        Fri Jun 04 10:48:07 2021 +0000
+++ b/games/fortune/datfiles/netbsd-tips        Fri Jun 04 10:56:55 2021 +0000
@@ -141,3 +141,21 @@
   cd /usr/tests
   atf-run | atf-report
 %
+To share files from your NetBSD system, you can use the built-in
+httpd(8).  Uncomment the 'http' lines in /etc/inetd.conf, reload inetd
+with service(8), and then any files in /var/www will be published to
+http://127.0.0.1/.
+%
+You can schedule simple periodic tasks for your NetBSD system to run
+without using cron(8) by editing the sh(1) scripts /etc/daily.local,
+/etc/weekly.local, and /etc/monthly.local.
+%
+NetBSD's tar(1) command can handle a wide range of file types, e.g.
+zip, 7z, and rar, and will autodetect the type of the file based
+on its extension.  For example, to extract a zip file:
+
+       tar xvf example.zip
+%
+You can use progress(1) to monitor the progress of data in a pipe:
+
+       zcat example.tar.gz | progress tar xf -



Home | Main Index | Thread Index | Old Index