mirror of
https://gitee.com/coder-xiaomo/notes
synced 2025-01-10 11:38:13 +08:00
22 lines
267 B
Bash
22 lines
267 B
Bash
#!/bin/bash
|
|
|
|
# trap "./docs-run.sh" SIGINT
|
|
|
|
echo "-------------- Hello! --------------"
|
|
npm run docs:dev
|
|
echo "-------------- Goodbye! --------------"
|
|
read -n 1
|
|
|
|
|
|
# npm run docs:dev
|
|
# read -n 1
|
|
|
|
|
|
# sleep 100
|
|
|
|
|
|
# while true
|
|
# do
|
|
# npm run docs:dev
|
|
# read -n 1
|
|
# done |