File diff r12643:391d5f6795de → r12644:ee602736a89e
src/ai/api/squirrel_export.sh
Show inline comments
 
#!/bin/bash
 

	
 
# $Id$
 

	
 
# Set neutral locale so sort behaves the same everywhere
 
LC_ALL=C
 
export LC_ALL
 

	
 
# We really need gawk for this!
 
AWK=gawk
 

	
 
${AWK} --version > /dev/null 2> /dev/null
 
if [ "$?" != "0" ]; then
 
	echo "This script needs gawk to run properly"