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