mirror of
https://github.com/danbulant/1mb-club
synced 2026-06-10 18:21:02 +00:00
13 lines
139 B
Bash
13 lines
139 B
Bash
#!/bin/sh
|
|
|
|
#define parameters which are passed in.
|
|
SIZE=$1
|
|
URL=$2
|
|
|
|
#define the template.
|
|
cat << EOF
|
|
---
|
|
pageurl: $URL
|
|
size: $SIZE
|
|
---
|
|
EOF
|