mirror of
https://github.com/danbulant/1mb-club
synced 2026-06-24 09:01:52 +00:00
13 lines
149 B
Bash
13 lines
149 B
Bash
#!/bin/sh
|
|
|
|
#define parameters which are passed in.
|
|
SIZE=$1
|
|
URL=$2
|
|
|
|
#define the template.
|
|
cat << EOF > $URL.md
|
|
---
|
|
pageurl: $URL
|
|
size: $SIZE
|
|
---
|
|
EOF
|