blob: fad15f282bf7ccd7657feafc8c8bef9dd2f651a4 (
plain)
1
2
3
4
5
6
|
#!/bin/bash
GIT=~/git
$GIT/driving_license/show_all.sh > /tmp/out
cat ${GIT}/driving_license/driving_license.md > /tmp/out.md
cat /tmp/out | ${GIT}/driving_license/output2md.sh >> /tmp/out.md
cp /tmp/out.md ${GIT}/wishlist/content/blog/driving_license.md
|