sbase

suckless unix tools
git clone git://git.suckless.org/sbase
Log | Files | Refs | README | LICENSE

tftp.1 (674B)


      1 .Dd 2015-10-08
      2 .Dt TFTP 1
      3 .Os sbase
      4 .Sh NAME
      5 .Nm tftp
      6 .Nd trivial file transfer protocol client
      7 .Sh SYNOPSIS
      8 .Nm
      9 .Fl h Ar host
     10 .Op Fl p Ar port
     11 .Op Fl x | c
     12 .Ar file
     13 .Sh DESCRIPTION
     14 .Nm
     15 is a client that implements the trivial file transfer protocol over
     16 either IPv4 or IPv6 as specified in RFC 1350.
     17 It can be used to transfer files to and from remote machines.
     18 .Sh OPTIONS
     19 .Bl -tag -width Ds
     20 .It Fl h Ar host
     21 Set the remote hostname.
     22 .It Fl p Ar port
     23 Set the remote port.
     24 It defaults to port 69.
     25 .It Fl x
     26 Extract a file from the server.
     27 This is the default if no flags are specified.
     28 Output goes to stdout.
     29 .It Fl c
     30 Create a file on the server.
     31 Input comes from stdin.
     32 .El