hgbook
annotate en/examples/mq.dodiff @ 713:f87515a4a3cf
Remove dead symbolic links
for i in `find .`; do if (test -h $i); then file $i|grep broken; fi; done
./es/99book.bib: broken symbolic link to `../en/99book.bib'
./es/bookhtml.cfg: broken symbolic link to `../en/bookhtml.cfg'
./es/fixhtml.py: broken symbolic link to `../en/fixhtml.py'
./es/hgbook.css: broken symbolic link to `../en/hgbook.css'
./es/htlatex.book: broken symbolic link to `../en/htlatex.book'
for i in `find .`; do if (test -h $i); then file $i|grep broken; fi; done
./es/99book.bib: broken symbolic link to `../en/99book.bib'
./es/bookhtml.cfg: broken symbolic link to `../en/bookhtml.cfg'
./es/fixhtml.py: broken symbolic link to `../en/fixhtml.py'
./es/hgbook.css: broken symbolic link to `../en/hgbook.css'
./es/htlatex.book: broken symbolic link to `../en/htlatex.book'
author | Dongsheng Song <dongsheng.song@gmail.com> |
---|---|
date | Thu May 21 14:26:31 2009 +0800 (2009-05-21) |
parents | f2061ece8ed9 |
children |
rev | line source |
---|---|
bos@46 | 1 #!/bin/bash |
bos@46 | 2 |
bos@19 | 3 #$ name: diff |
bos@19 | 4 |
bos@288 | 5 echo 'this is my original thought' > oldfile |
bos@288 | 6 echo 'i have changed my mind' > newfile |
bos@19 | 7 |
bos@19 | 8 diff -u oldfile newfile > tiny.patch |
bos@19 | 9 |
bos@19 | 10 cat tiny.patch |
bos@19 | 11 |
bos@19 | 12 patch < tiny.patch |
bos@19 | 13 |
makoto@252 | 14 cat oldfile |