nezha/cmd/playground/example.sh

10 lines
162 B
Bash
Raw Normal View History

#!/bin/sh
set -x
ME=`whoami`
2021-01-28 21:40:57 -05:00
ping example.com -c20 && \
echo "==== $ME ====" && \
2021-01-28 21:40:57 -05:00
ping example.net -c20 && \
echo $1 && \
echo "==== done! ===="