Membuat Patch File
Patch adalah proses "menambal" isi file yang lama dengan menambahkan update data terbaru. Pada linux kita dapat membuat file patch. berikut adalah cara sederhana membuat file patch
Pertama buat dua file.
# touch test.txt
# touch test2.txt
Kedua masukkan data ke kedua file tersebut.
# echo "hallo" > test.txt
# echo "hallo apa kabar" > test2.txt
Ketiga proses pembuatan file patch
# diff test.txt test2.txt > test.patch
Dengan begini kita sudah dapat membuat file patch. selanjutnya kita tes file patch yang telah kita buat.
# patch -p0 test.txt < test.patch
Selanjutnya coba buka file test.txt
# cat test.txt
Pada file test.txt akan sesuai dengan file test2.txt
Pertama buat dua file.
# touch test.txt
# touch test2.txt
Kedua masukkan data ke kedua file tersebut.
# echo "hallo" > test.txt
# echo "hallo apa kabar" > test2.txt
Ketiga proses pembuatan file patch
# diff test.txt test2.txt > test.patch
Dengan begini kita sudah dapat membuat file patch. selanjutnya kita tes file patch yang telah kita buat.
# patch -p0 test.txt < test.patch
Selanjutnya coba buka file test.txt
# cat test.txt
Pada file test.txt akan sesuai dengan file test2.txt
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home