自制Linux终端锁屏工具
时间:2022-05-27 00:15:00|栏目:Linux|点击: 次
很多时候我们不能一直守护在自己的电脑旁边,而且有些文件并不想让别人知道。那么这时候来个锁屏,是再合适不过的了。今天分享一个自制的锁屏工具,如下。
准备
•操作系统 : 我这里是ElementaryOS虚拟机 + XShell 远程登录工具
•Shell语言 : 我使用的是默认的Bash Shell
•其他小工具 :
◦fortune:系统随机的从语库中选出一句英文成语。
◦cowsay : 在终端界面上显示出一个奶牛的语句框,配合管道连接上fortune,效果完美!
代码
#!/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 "nnnnnnnntttPlease enter unlock code:" | cowsay stty -echo #屏蔽输入的字符 read input case $input in $mypassword) printf "tt Hello $USER,Today is $(date +%T)n" stty echo break ;; #输入正确,挑出循环回到命令行 *)echo "Do not check my files,please! See as follows:" sleep 3 clear continue ;; #否则,继续循环 esac done
您可能感兴趣的文章
- 05-10Ubuntu系统安装ANSYS2021R1
- 05-10ANSYS2021R1安装方法Linux centos Ubuntu系统
- 11-07Linux中一对多配置日志服务器的详细步骤
- 11-07linux服务器安装SonarQube代码检测工具的详细步骤
- 11-07Apache自带的ab压力测试工具的实现
- 11-07apache虚拟主机配置的三种方式(小结)
- 11-07Linux在两个服务器直接传文件的操作方法
- 11-07xshell5使用ssh连接阿里云服务器的实现步骤
- 11-07linux查看服务器开放的端口和启用的端口多种方式
- 11-07Xshell连接centOS7并与CentOS7联网