Welcome to mirror list, hosted at ThFree Co, Russian Federation.

watchresults.sh - github.com/openwrt/buildscripts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e65b3dc40cc77fe7283036b91641d489d3f841c7 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

watch -n 5 '
	. ./shared/functions.sh

	for target in $(fetch_remote_targets); do
		echo -n "$target: "
		find "$CACHE_DIR/repo-local/$target" -name "*.ipk" 2>/dev/null | wc -l
	done
'