Select Page

Sort files by date to directory

echo “Please wait while I sort your files by date.” for a in *.jpeg; do date -r $a +%y%m%d >/dev/null && { dof=$(date -r $a +%y%m%d) if [ ! -d $dof ]; then mkdir $dof fi mv $a $dof/ }...

Huawei Set Modem Mode 3G/GPRS

To set the operating mode of Huawei 3G sticks, use these AT commands (at your own risk). Apparently the setting is saved and used in the future as well. Any : AT^SYSCFG=2,0,3FFFFFFF,2,4 2G only : AT^SYSCFG=13,1,3FFFFFFF,2,4 3G only : AT^SYSCFG=14,2,3FFFFFFF,2,4 2G...

Perl – Send Email via Secure Mail Server

#!/usr/bin/perl -w # Modules Needed: # apt-get install libssl-dev # perl -MCPAN -e shell # install Net::SSLeay # install IO::Socket::SSL # install Authen::SASL # install Net::SMTP::SSL use Net::SMTP::SSL; sub send_mail { my $to = $_[0]; my $subject = $_[1]; my $body =...