Artifact 53565ca9b62f80ec1885ca60f5509811758760fc4fefa8c78f281a15eb025c7c:
- Executable file bin/poe-status — part of check-in [208bf3e8bb] at 2024-07-04 15:00:47 on branch trunk — Path tweak in poe-status launch script (user: tangent size: 333)
#!/bin/bash
rsc=$(dirname "$(readlink -f "$0")")/../scripts/$(basename "$0").rsc
first=1
for r in routerA routerB
do
scp -q "$rsc" $r:
if [ -z "$first" ]
then
echo -e "\n---------------------------------------------------------\n"
fi
echo "On $r:"
ssh $r "/import poe-status.rsc"
unset first
done