Artifact 4166ea994c7f0aa51330575ff6a50ee6e6fd1bcf:
- Executable file utils/cleanup-pkts.sh — part of check-in [d2b6ddbe9c] at 2018-01-31 16:17:28 on branch v1.65 — Added incremental delays for high cpu builds (user: ritikaag, size: 142) [annotate] [blame] [check-ins using] [more...]
#!/bin/bash pushd $1 for x in *.pkt;do if grep 'T configf' $x > /dev/null;then rm $x else echo skip $x fi done