12 lines
91 B
Plaintext
12 lines
91 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ $# -gt 0 ];
|
||
|
then
|
||
|
cd "$1"
|
||
|
fi
|
||
|
|
||
|
rm *.txt
|
||
|
cat *.md | md2point
|
||
|
catpoint *.txt
|
||
|
|