io ho file1.txt
this is the original text
line2
line3
line4
happy hacking !
e file2.txt
this is the original text
line2
line4
happy hacking !
GNU is not UNIX
se lo faccio: diff file1.txt file2.txt
ottengo:
3d2
< line3
5a5
> GNU is not UNIX
Come viene generalmente interpretato l'output? Penso che ciò <
significhi essere rimosso, ma che cosa significa 3d2
o cosa 5a5
significa?
Se lo faccio:
$ diff -u file1.txt file2.txt
--- file1.txt 2013-07-06 17:44:59.180000000 +0200
+++ file2.txt 2013-07-06 17:39:53.433000000 +0200
@@ -1,5 +1,5 @@
this is the original text
line2
-line3
line4
happy hacking !
+GNU is not UNIX
I risultati sono più chiari ma cosa @@ -1,5 +1,5 @@
significa?