remove-files.sh 408 字节
Newer Older
1
#!/bin/bash
G
gyfora 已提交
2
echo REMOVING:
3 4 5
ssh strato@dell150.ilab.sztaki.hu '
for j in {101..142} 144 145;
do
G
gyfora 已提交
6 7 8
	echo -n $j,
   	$(ssh dell$j "rm stratosphere-distrib/log/counter/*");
   	$(ssh dell$j "rm stratosphere-distrib/log/timer/*");
9 10
done

G
gyfora 已提交
11
echo 150
12 13 14 15
rm stratosphere-distrib/log/counter/*
rm stratosphere-distrib/log/timer/*
rm stratosphere-distrib/log/all_tests/counter/*
rm stratosphere-distrib/log/all_tests/timer/*
G
gyfora 已提交
16
'