diff options
| author | Joerg Wunsch <joerg@FreeBSD.org> | 1996-01-08 12:29:26 +0000 |
|---|---|---|
| committer | Joerg Wunsch <joerg@FreeBSD.org> | 1996-01-08 12:29:26 +0000 |
| commit | 8348d96afc34c469ed888917ccbb8cfd404e245d (patch) | |
| tree | 6532b1b188cf03168417f11e72740a96f74b2a26 /usr.bin/mt | |
| parent | 3e0123a3e2351b46fa37d94d11f8869a700faee4 (diff) | |
Notes
Diffstat (limited to 'usr.bin/mt')
| -rw-r--r-- | usr.bin/mt/mt.1 | 3 | ||||
| -rw-r--r-- | usr.bin/mt/mt.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/usr.bin/mt/mt.1 b/usr.bin/mt/mt.1 index d27c168faf9f..a2cfc44155b8 100644 --- a/usr.bin/mt/mt.1 +++ b/usr.bin/mt/mt.1 @@ -89,6 +89,9 @@ Rewind the tape and place the tape unit off-line .It Cm erase Erase the tape (Count is ignored). +.It Cm retens +Re-tension the tape +(one full wind forth and back, Count is ignored). .It Cm status Print status information about the tape unit. .It Cm blocksize diff --git a/usr.bin/mt/mt.c b/usr.bin/mt/mt.c index 81bdefb90d1a..783f3de1afb8 100644 --- a/usr.bin/mt/mt.c +++ b/usr.bin/mt/mt.c @@ -94,6 +94,7 @@ struct commands { { "density", MTSETDNSTY, 0, NEED_2ARGS|ZERO_ALLOWED|IS_DENSITY }, { "eom", MTEOD, 1 }, { "comp", MTCOMP, 0, NEED_2ARGS|ZERO_ALLOWED }, + { "retens", MTRETENS, 1 }, #endif /* defined(__FreeBSD__) */ { NULL } }; |
