Projet

Général

Profil

Paste
Télécharger au format
Statistiques
| Branche: | Révision:

root / tools / profiling / dump_node.sh @ 97fdf4b3

Historique | Voir | Annoter | Télécharger (201 octets)

1
#! /bin/sh
2

    
3
NODE=${1:-localhost}
4
PORT=${2:-4949}
5

    
6
{
7
	for plugin in $(echo "list" | nc $NODE $PORT | tail -n 1)
8
	do
9
		echo "config $plugin"
10
		echo "fetch $plugin"
11
	done 
12
	echo "quit"
13
} | nc $NODE $PORT