init build.ems main

This commit is contained in:
agtuser
2024-09-27 18:07:48 +08:00
parent 7b98267c9d
commit a528b36e4e
3934 changed files with 18688 additions and 0 deletions

23
tools/expect/checkExpect Executable file
View File

@@ -0,0 +1,23 @@
#!/bin/sh
#created by hewd
#Date:2002-11-27
###############################################################################
#Check and install expect
###############################################################################
if(test -x /usr/bin/expect ) then
if(test -x /usr/local/bin/expect ) then
echo "Check Expect OK!"
else
cp ./expect /usr/local/bin
echo "Install expect to /usr/local/bin ok!"
fi
else
cp ./expect /usr/bin
chmod 755 /usr/bin/expect
cp ./expect /usr/local/bin
chmod 755 /usr/local/bin/expect
cp ./libexpect* /usr/lib
chmod 755 /usr/local/bin/libexpect*
echo "Install expect ok!"
fi

BIN
tools/expect/expect Executable file

Binary file not shown.