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