swh:1:snp:187b9df2fb441c8926b8006741928e14d7f5aba0
Raw File
Tip revision: 171e08bc5f9109184fa82d4b00e42bd2c3c7c373 authored by Yisu Peng on 18 April 2023, 19:51:58 UTC
update Makefile link to boost library for new boost
Tip revision: 171e08b
gen_info.sh
#!/bin/bash

flist=`find -regex '\./data/rand/g[0-9]*\.txt'`

echo $flist

for gfile in $flist;
do
	echo $gfile
	./analyze_graph $gfile > ${gfile/.txt/_info.txt}
done

back to top