Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
nikosbentenitis committed Apr 5, 2014
1 parent 46ca113 commit 780e684
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
7 changes: 7 additions & 0 deletions guides/enumerate.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<ul>
<li>Introduction to Bitcoin: <a href="http://btcfoundationedcom.github.io/guides/introduction_letter.pdf">PDF letter size</a>, <a href="http://btcfoundationedcom.github.io/guides/introduction_a4.pdf">PDF A4 size</a>, <a href="http://btcfoundationedcom.github.io/guides/introduction.html">html</a></li>
<li>Bitcoin for Regulators: <a href="http://btcfoundationedcom.github.io/guides/regulators_letter.pdf">PDF letter size</a>, <a href="http://btcfoundationedcom.github.io/guides/regulators_a4.pdf">PDF A4 size</a>, <a href="http://btcfoundationedcom.github.io/guides/regulators.html">html</a></li>
<li>Selecting a Wallet and Protecting your bitcoins: <a href="http://btcfoundationedcom.github.io/guides/security_letter.pdf">PDF letter size</a>, <a href="http://btcfoundationedcom.github.io/guides/security_a4.pdf">PDF A4 size</a>, <a href="http://btcfoundationedcom.github.io/guides/security.html">html</a></li>
<li>Best Practices for Buying Bitcoin: Exchanges and Brokerages: <a href="http://btcfoundationedcom.github.io/guides/buying_letter.pdf">PDF letter size</a>, <a href="http://btcfoundationedcom.github.io/guides/buying_a4.pdf">PDF A4 size</a>, <a href="http://btcfoundationedcom.github.io/guides/buying.html">html</a></li>
<li>Best Practices for Businesses: <a href="http://btcfoundationedcom.github.io/guides/businesses_letter.pdf">PDF letter size</a>, <a href="http://btcfoundationedcom.github.io/guides/businesses_a4.pdf">PDF A4 size</a>, <a href="http://btcfoundationedcom.github.io/guides/businesses.html">html</a></li>
</ul>
5 changes: 5 additions & 0 deletions guides/enumerate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- Introduction to Bitcoin: [PDF letter size](http://btcfoundationedcom.github.io/guides/introduction_letter.pdf), [PDF A4 size](http://btcfoundationedcom.github.io/guides/introduction_a4.pdf), [html](http://btcfoundationedcom.github.io/guides/introduction.html)
- Bitcoin for Regulators: [PDF letter size](http://btcfoundationedcom.github.io/guides/regulators_letter.pdf), [PDF A4 size](http://btcfoundationedcom.github.io/guides/regulators_a4.pdf), [html](http://btcfoundationedcom.github.io/guides/regulators.html)
- Selecting a Wallet and Protecting your bitcoins: [PDF letter size](http://btcfoundationedcom.github.io/guides/security_letter.pdf), [PDF A4 size](http://btcfoundationedcom.github.io/guides/security_a4.pdf), [html](http://btcfoundationedcom.github.io/guides/security.html)
- Best Practices for Buying Bitcoin: Exchanges and Brokerages: [PDF letter size](http://btcfoundationedcom.github.io/guides/buying_letter.pdf), [PDF A4 size](http://btcfoundationedcom.github.io/guides/buying_a4.pdf), [html](http://btcfoundationedcom.github.io/guides/buying.html)
- Best Practices for Businesses: [PDF letter size](http://btcfoundationedcom.github.io/guides/businesses_letter.pdf), [PDF A4 size](http://btcfoundationedcom.github.io/guides/businesses_a4.pdf), [html](http://btcfoundationedcom.github.io/guides/businesses.html)
7 changes: 4 additions & 3 deletions guides/enumerate.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#!/bin/bash
for i in *.md
do
REPO="https://github.com/btcfoundationedcom/btcfoundationedcom.github.io/raw/master/guides/"
FNAME=`basename $i .md`
TITLE=`head -1 ${FNAME}.md | sed "s/\% //"`
LETTER=`echo ${FNAME}_letter.pdf`
A4=`echo ${FNAME}_a4.pdf`
HTML=`echo ${FNAME}.html`
LETTER="$REPO/${FNAME}_letter.pdf"
A4="$REPO/${FNAME}_a4.pdf"
HTML="$REPO/${FNAME}.html"
echo "- ${TITLE}: [PDF letter size]($LETTER), [PDF A4 size]($A4), [html]($HTML)"
done

0 comments on commit 780e684

Please sign in to comment.