22 lines
817 B
Bash
22 lines
817 B
Bash
#!/bin/bash
|
|
#
|
|
|
|
next() {
|
|
cat << EOT
|
|
========================================
|
|
███╗ ██╗███████╗██╗ ██╗████████╗
|
|
████╗ ██║██╔════╝╚██╗██╔╝╚══██╔══╝
|
|
██╔██╗ ██║█████╗ ╚███╔╝ ██║
|
|
██║╚██╗██║██╔══╝ ██╔██╗ ██║
|
|
██║ ╚████║███████╗██╔╝ ██╗ ██║
|
|
╚═╝ ╚═══╝╚══════╝╚═╝ ╚═╝ ╚═╝
|
|
========================================
|
|
NexT version $1
|
|
Documentation: https://hugo-next.js.org
|
|
========================================
|
|
EOT
|
|
}
|
|
|
|
next V0.0.1
|
|
|
|
hugo server -D -t ../.. --port 1414 |