mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 13:18:13 -05:00
9 lines
145 B
Bash
9 lines
145 B
Bash
|
#!/bin/sh
|
||
|
set -x
|
||
|
|
||
|
ME=`whoami`
|
||
|
|
||
|
ping example.com -c20 && \
|
||
|
echo "==== $ME ====" && \
|
||
|
ping example.net -c20 && \
|
||
|
echo "==== done! ===="
|