자체 제작 Linux 단말기 잠 금 화면 도구

3523 단어
우 리 는 항상 자신의 컴퓨터 옆 을 지 키 지 못 할 때 가 많 고, 어떤 파일 들 은 다른 사람 에 게 알 리 고 싶 지 않다.그렇다면 이 럴 때 자물쇠 스크린 을 만 드 는 것 은 더 할 나 위 없 이 적합 하 다.오늘 은 자체 제작 한 잠 금 화면 도 구 를 공유 합 니 다. 다음 과 같 습 니 다.
준비 하 다. •운영 체제: 저 는 Elementary OS 가상 컴퓨터 + XShell 원 격 로그 인 도구 입 니 다. •Shell 언어: 기본 Bash Shell 을 사용 합 니 다. •기타 작은 도구:          ◦ fortune: 언어 창고 에서 영어 성 어 를 무 작위 로 선택 합 니 다.        ◦ cowsay: 터미널 인터페이스 에 젖소 의 문구 상자 가 표시 되 어 있 습 니 다. 파이프 에 포 텐 을 연결 하면 효과 가 완벽 합 니 다!
 코드

#!/bin/bash
#scriptname:locktty
#writed by :Marksinoberg
#description : just for protecting our message when we leave away. And we can set the password every time.

reset;clear #清除屏幕
info="Please input the password you will use later!"
cowsay $info
read mypassword
echo "Screen will locked in 7 seconds!"
sleep 7
clear
#!/bin/bash
#scriptname:locktty
#writed by :javalee
#script start...
reset;clear #清除屏幕
info="Please input the password you will use later!"
cowsay $info
read mypassword
echo "Screen will locked in 7 seconds!"
sleep 7
clear
#加上这个倒记时的小东东,;)

trapper () { #建立个函数
trap ' ' 2 3 20 #忽略CTRL+C CTRL+\ CTRL+Z信号
}
while : #进入死循环
do
trapper #调用函数
printf "







\t\t\tPlease enter unlock code:" | cowsay stty -echo #屏蔽输入的字符 read input case $input in $mypassword) printf "\t\t Hello $USER,Today is $(date +%T)
" stty echo break ;; #输入正确,挑出循环回到命令行 *)echo "Do not check my files,please! See as follows:" sleep 3 clear continue ;; #否则,继续循环 esac done

데모 실행
프로그램 실행 시작:
mark@mark:~/temp/myscripts$ ./lockscreen.sh
 ______________________________________/Please input the password you       \\     will use later!                 / --------------------------------------        \   ^__^         \  (oo)\_______             (__)\       )\/\                ||----w |                 ||     || 123 Screen will locked in 7 seconds!
정적 텍스트 는 프로그램 실행 과정 에서 의 동적 효 과 를 표시 할 수 없 기 때문에 잠 금 해제 인터페이스 를 직접 보 세 요. 우리 가 정확 하지 않 은 비밀 번 호 를 입력 할 때 시스템 은 입력 오류 와 유머 러 스 한 '경고' 를 알려 줍 니 다.
 ___________________________/                          \\Please enter unlock code:/ ---------------------------        \   ^__^         \  (oo)\_______             (__)\       )\/\                ||----w |                 ||     || Do not check my files,please! See as follows:  _________________________________________/Q: Why is it that the more accuracy you\| demand from an interpolation            | |                                         | | function, the more expensive it becomes | | to compute? A: That's the Law of Spline |\Demand.                                / -----------------------------------------        \   ^__^         \  (oo)\_______             (__)\       )\/\                ||----w |                 ||     ||
우리 가 비밀 번 호 를 정확하게 입력 했 을 때 다음 과 같 습 니 다.
 ___________________________/                          \\Please enter unlock code:/ ---------------------------        \   ^__^         \  (oo)\_______             (__)\       )\/\                ||----w |                 ||     ||          Hello mark,Today is 06:35:05
결어
코드 는 간단 합 니 다. 셸 스 크 립 트 문법 에 만 사용 되 는 작은 명령 입 니 다.이 스 크 립 트 가 벽돌 을 던 져 옥 을 끌 어 올 리 고 당신 의 생각 을 열 어 더 좋 은 자물쇠 스크린 스 크 립 트 를 만 들 수 있 기 를 바 랍 니 다!

좋은 웹페이지 즐겨찾기