Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | fixed a misspelled closing tag :/. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
df60acb6910271513f161ae144e6a0ad |
| User & Date: | stephan 2013-08-13 12:50:33.124 |
Context
|
2013-08-13
| ||
| 13:37 | c/the the/the/ check-in: 0b75e2e615 user: jan.nijtmans tags: trunk | |
| 12:50 | fixed a misspelled closing tag :/. check-in: df60acb691 user: stephan tags: trunk | |
| 12:47 | Added missing name anchor and section number. Minor text improvements. check-in: 04764ae2ea user: stephan tags: trunk | |
Changes
Changes to www/fileformat.wiki.
| ︙ | ︙ | |||
739 740 741 742 743 744 745 | <h2>9.0 Addenda</h2> This section contains additional information which may be useful when implementing algorithms described above. <h3>R Card Hash Calculation</h3> | | | 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 | <h2>9.0 Addenda</h2> This section contains additional information which may be useful when implementing algorithms described above. <h3>R Card Hash Calculation</h3> Given a manifest file named <tt>MF</tt>, the following Bash shell code demonstrates how to compute the value of the R card in that manifest. This example uses manifest [28987096ac]. Lines starting with <tt>#</tt> are shell input and other lines are output. This demonstration assumes that the file versions represented by the input manifest are checked out under the current directory. <nowiki><pre> |
| ︙ | ︙ | |||
765 766 767 768 769 770 771 |
R c0788982781981c96a0d81465fec7192
# for i in $(awk '/^F /{print $2}' MF); do \
echo $i $(stat -c '%s' $i); \
cat $i; \
done | md5sum
c0788982781981c96a0d81465fec7192 -
| | | 765 766 767 768 769 770 771 772 |
R c0788982781981c96a0d81465fec7192
# for i in $(awk '/^F /{print $2}' MF); do \
echo $i $(stat -c '%s' $i); \
cat $i; \
done | md5sum
c0788982781981c96a0d81465fec7192 -
</pre></nowiki>
|