Artifact 8b0ea2d6b7911740da7bbc1d25b3e14d46a1f3c9:
- Executable file utils/cleanup-pkts.sh — part of check-in [a8cb71c532] at 2018-01-26 13:34:42 on branch v1.65 — Added cleanup-pkts and commented out unnecessary pkts from configf (user: mrwellan, size: 147) [annotate] [blame] [check-ins using] [more...]
#!/bin/bash pushd $1 for x in *.pkt;do if grep 'T configf' $x > /dev/null;then echo rm $x else echo skip $x fi done