linux 셸 실행 중 상호작용 입력 이 필요 합 니 다. Yes/NO Y/N

1959 단어
최근 자동 설치 스 크 립 트 를 작성 하 다가 redis - server 가 설치 되 었 을 때 리 턴 3 개 를 입력 해 야 합 니 다. 이 를 시도 해 보 았 습 니 다. 마지막 으로 구 글 이 만 족 스 러 운 해결 방법 입 니 다.
셸 스 크 립 트 는 리 턴 을 입력 하고 YES/NO Y/N 을 입력 하 는 등 대화 가 필요 합 니 다.
Linux 에서 셸 스 크 립 트 가 실 행 될 때 자주 상호작용 을 해 야 합 니 다. 예 를 들 어 소프트웨어 를 설치 하 는 과정 에서 license 성명 에 대한 확인 은 yes, 리 턴 같은 확인 정 보 를 입력 해 야 합 니 다.이것 은 자동화 설치 할 때 문제 가 될 것 이다.
1、                   TCL Expect。 Expect       ,       ,    。            
2、             ,       ,              。                ,             。
                  : installWAS.sh,           ,
       :echo | installWAS.sh;      yes|no,   ,   
    echo yes|installWAS.sh.             。

다시 한 번 의 코드 도 생각 을 가 져 올 수 있다.
[0 No.2015 huan@huan ~/tmp]$ cat foo            
read -s -n1 -p "Press any key to continue ... "         
echo "Your inputs: $REPLY"          
[0 No.2016 huan@huan ~/tmp]$ ./foo < /dev/null          
Your inputs:            
[0 No.2017 huan@huan ~/tmp]$

마지막 으로 구체 적 으로 실현:
[root@localhost opt]# cat cache.sh 
#!/bin/bash
yum install -y gcc-c++ tcl
cd /opt
#cache
wget http://download.redis.io/releases/redis-3.0.0.tar.gz
#------------------------------------------------------------------------------------#
#     
tar xf redis-3.0.0.tar.gz 
cd redis-3.0.0 
make && cd src && make install

cd /opt/redis-3.0.0/utils
echo | /bin/bash install_server.sh 

mv /etc/redis/6379.conf /etc/redis/redis.conf
mv /etc/init.d/redis_6379 /etc/init.d/redis
sed -i "[email protected]@redis.conf@" /etc/init.d/redis
sed -ine "65s/# bind 127.0.0.1/bind 0.0.0.0/" /etc/redis/redis.conf
sed -ine "393 i\requirepass Bs123456A" /etc/redis/redis.conf

#     ,redis        ,        redis    , daemonize    yes
echo "vm.overcommit_memory=1">>/etc/sysctl.conf
sysctl -p
[root@localhost opt]#

다음으로 전송:https://www.cnblogs.com/mologa-jie/p/6065159.html

좋은 웹페이지 즐겨찾기