~ubuntu-branches/debian/sid/man-pages-it/sid

« back to all changes in this revision

Viewing changes to man1/cmp.1

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Tapparo
  • Date: 2001-04-01 15:40:28 UTC
  • Revision ID: james.westby@ubuntu.com-20010401154028-z6m3zeb44vbw7yhp
Tags: upstream-0.3.0
Import upstream version 0.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.\" Traduzione italiana di Giuseppe De Marco - gdm@rebel.net
 
2
.\" 24 Settembre 1996 - Ultima modifica: 19 Ottobre 1996
 
3
.\"
 
4
.\" Copyright (c) 1987, 1990, 1993
 
5
.\"     The Regents of the University of California.  All rights reserved.
 
6
.\"
 
7
.\" This code is derived from software contributed to Berkeley by
 
8
.\" the Institute of Electrical and Electronics Engineers, Inc.
 
9
.\"
 
10
.\" Redistribution and use in source and binary forms, with or without
 
11
.\" modification, are permitted provided that the following conditions
 
12
.\" are met:
 
13
.\" 1. Redistributions of source code must retain the above copyright
 
14
.\"    notice, this list of conditions and the following disclaimer.
 
15
.\" 2. Redistributions in binary form must reproduce the above copyright
 
16
.\"    notice, this list of conditions and the following disclaimer in the
 
17
.\"    documentation and/or other materials provided with the distribution.
 
18
.\" 3. All advertising materials mentioning features or use of this software
 
19
.\"    must display the following acknowledgement:
 
20
.\"     This product includes software developed by the University of
 
21
.\"     California, Berkeley and its contributors.
 
22
.\" 4. Neither the name of the University nor the names of its contributors
 
23
.\"    may be used to endorse or promote products derived from this software
 
24
.\"    without specific prior written permission.
 
25
.\"
 
26
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 
27
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
28
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
29
.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 
30
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
31
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 
32
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 
33
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 
34
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 
35
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
36
.\" SUCH DAMAGE.
 
37
.\"
 
38
.\"     @(#)cmp.1       8.1 (Berkeley) 6/6/93
 
39
.\"
 
40
.Dd 6 giugno 1993
 
41
.Dt CMP 1
 
42
.Os
 
43
.Sh NOME
 
44
.Nm cmp
 
45
.Nd compara due file
 
46
.Sh SINTASSI
 
47
.Nm cmp
 
48
.Op Fl l | Fl s
 
49
.Ar file1 file2
 
50
.Op Ar skip1 Op Ar skip2
 
51
.Sh DESCRIZIONE
 
52
L'utility cmp compara due file di un qualunque tipo e scrive i risultati
 
53
allo standard output.
 
54
Per default,
 
55
.Nm
 
56
tace se i file sono uguali; se differiscono, � riportato il byte
 
57
ed il numero di riga nel quale la prima differenza viene riscontrata.
 
58
.Pp
 
59
Byte e righe vengono numerati iniziando da uno.
 
60
.Pp
 
61
Le seguenti opzioni sono disponibili:
 
62
.Bl -tag -width flag
 
63
.It Fl l
 
64
Stampa il numero del byte (decimale) e i differenti
 
65
valori dei byte (ottali) per ogni differenza.
 
66
.It Fl s
 
67
Non stampa alcunch� per file differenti; ritorna solo
 
68
il codice d'uscita.
 
69
.El
 
70
.Pp
 
71
Gli argomenti opzionali
 
72
.Ar skip1
 
73
 
74
.Ar skip2
 
75
sono gli offset dei byte dall'inizio di
 
76
.Ar file1
 
77
e
 
78
.Ar file2 ,
 
79
rispettivamente, dove la comparazione inizier�.
 
80
L'offset � decimale per default, ma pu� essere espresso come
 
81
valore esadecimale o ottale facendolo precedere all'inizio da un ``0x'' o un ``0''.
 
82
.Pp
 
83
L'utility
 
84
.Nm cmp
 
85
esce con uno dei seguenti valori:
 
86
.Bl -tag -width 4n
 
87
.It 0
 
88
I file sono identici.
 
89
.It 1
 
90
I file sono diversi; questo include il caso
 
91
in cui un file � identico alla prima parte
 
92
dell'altro.
 
93
In tal caso, se l'opzione
 
94
.Fl s
 
95
non � stata specificata,
 
96
.Nm cmp
 
97
scrive allo standard output che la EOF � stata raggiunta nel file pi�
 
98
corto (prima che una qualche differenza fosse stata trovata).
 
99
.It >1
 
100
� stato riscontrato un errore.
 
101
.El
 
102
.Sh VEDERE ANCHE
 
103
.Xr diff 1 ,
 
104
.Xr diff3 1
 
105
.Sh STANDARD
 
106
Ci si aspetta che l'utility
 
107
.Nm cmp
 
108
sia
 
109
.St -p1003.2
 
110
compatibile.