hgbook

view es/examples/cmdref @ 343:2fb78d342e07

changed es/Leame.1st
upgraded the list of files on translation and revision.

added a term (builtin) to the glossary

changed es/concepts.tex
file added to define labels needed by other tex files

changed es/preface.tex
killed a TODO

changed es/tour-basic.tex
I have began the translation of this file. 34% completed, according to vim

changed es/undo.tex
file added to define labels needed by other tex files
author jerojasro@localhost
date Sun Oct 19 19:56:21 2008 -0500 (2008-10-19)
parents
children
line source
1 #!/bin/bash
3 hg init diff
4 cd diff
5 cat > myfile.c <<EOF
6 int myfunc()
7 {
8 return 1;
9 }
10 EOF
11 hg ci -Ama
13 sed -ie 's/return 1/return 10/' myfile.c
15 #$ name: diff-p
17 echo '[diff]' >> $HGRC
18 echo 'showfunc = False' >> $HGRC
20 hg diff
22 hg diff -p