To: Thomas A Watson who wrote (448) | 2/19/2017 1:26:24 PM | From: FJB | | | Free Book until 6pm central time.
Mastering Linux Shell Scripting
- Master the complexities of Bash shell scripting and unlock the power of shell for your enterprise
- Identify the high level steps such as verifying user input, using command lines and conditional statements in creating and executing simple shell scripts
- Create and edit dynamic shell scripts to manage complex and repetitive tasks
- Learn about scripting in Perl and programming in Python as a BASH scripting alternative with this practical, step-by-step guide
packtpub.com |
| Linux OS.: Technical questions | Pastime Discussion ForumsShare | RecommendKeepReplyMark as Last Read |
|
To: Thomas A Watson who wrote (448) | 4/29/2017 12:15:48 PM | From: FJB | | | CoreFreq is a CPU monitoring software designed for 64-bits Processors w/ architectures Intel Atom, Core2, Nehalem, SandyBridge and superior, AMD Family 0F
https://github.com/cyring/CoreFreq
 |
| Linux OS.: Technical questions | Pastime Discussion ForumsShare | RecommendKeepReplyMark as Last ReadRead Replies (1) |
|
To: Thomas A Watson who wrote (448) | 5/12/2017 3:13:31 PM | From: FJB | | | Free ebook for the next four hours. packtpub.com
Practical Linux Security Cookbook As more and more organizations adopt Linux for their networks and servers, the number of security threats grows and grows. As a sysadmin, you'll be the first point of call when hackers threaten your network - and this free eBook will be your bible for building and maintaining a secure Linux system. |
| Linux OS.: Technical questions | Pastime Discussion ForumsShare | RecommendKeepReplyMark as Last Read |
|
From: Thomas A Watson | 11/10/2018 11:58:42 AM | | | | where is the mouse on your screen? In a terminal run mousepos using xdotool
need xdotool installed
sudo apt-get install xdotool
or
watson@xen2[109]xterm -geometry 50x12 -e mousepos
watson@xen2[105]which mousepos /usr/local/bin/mousepos
watson@xen2[106] watson@xen2[106]cat `which mousepos` #!/bin/csh # /usr/local/bin/mousepos set c=0 set last=99
while ( 1 )
xdotool getmouselocation --shell >ztmp sleep .5s
# cat ztmp set x=`cat ztmp|head -1` set y=`cat ztmp|head -2|tail -1` set screen=`cat ztmp|tail -2|head -1` set window=`cat ztmp|tail -1`
echo $x $y" "$c" " $screen $window echo ""
if ( $c < $last ) then @ c++ else set c=0 endif end |
| Linux OS.: Technical questions | Pastime Discussion ForumsShare | RecommendKeepReplyMark as Last Read |
|
| |