1
0
mirror of https://github.com/wfjm/w11.git synced 2026-04-29 13:23:22 +00:00
Files
wfjm.w11/tools/bin/rm_dep
2010-07-09 18:14:38 +00:00

14 lines
434 B
Bash
Executable File

#!/bin/sh
# $Id: rm_dep 311 2010-06-30 17:52:37Z mueller $
#
# Revision History:
# Date Rev Version Comment
# 2010-04-26 284 1.1 add xargs -r to prevent rm errors on empty lists
# 2010-04-24 282 1.0 Initial version
#
for ftype in dep_ghdl dep_isim dep_xst dep_ucf_cpp
do
echo "---------- remove *.$ftype ----------------------------------------"
find -name "*.$ftype" | xargs --no-run-if-empty rm -v
done