?? scroller.pl
字號(hào):
#!/usr/bin/perl# $Id: scroller.pl,v 1.4 2005/10/30 19:44:38 simimeie Exp $# Clock Remote Control Scroller - scrolls a text on the LED displayuse strict;use Time::HiRes qw( usleep);my $cmdline = "./clockrcon ntp-clock FICKEN32 1";my $string = (" "x6).join(" ",@ARGV);for (0 .. length($string)) { my $subs = substr($string, $_, 6);# print ("./clockrcon ntp-clock FICKEN32 1 $subs 6\n"); system ("$cmdline \"$subs\" 4"); usleep(166667);}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -