Files
b2txt25/language_model/srilm-1.7.3/sbin/desanitize-3rdparty

17 lines
252 B
Plaintext
Raw Normal View History

2025-07-02 12:18:09 -07:00
#!/bin/sh
#
# Restore third-party code
#
# $Header: /home/srilm/CVS/srilm/sbin/desanitize-3rdparty,v 1.1 2004/12/03 02:43:38 stolcke Exp $
#
for file
do
if [ -f $file.3rdparty ]; then
echo "restoring $file" >&2
mv $file.3rdparty $file
fi
done