Posted: . At: 10:32 AM. This was 5 years ago. Post ID: 12927
Page permalink. WordPress uses cookies, or tiny pieces of information stored on your computer, to verify who you are. There are cookies for logged in users and for commenters.
These cookies expire two weeks after they are set.



Sponsored



Very cool Linux scripts I have found on the Internet.


A collection of nice Linux scripts I have found on the Internet.

Nice pipes terminal screensaver, this is a nice addition to your Linux terminal emulator.

https://github.com/pipeseroni/pipes.sh.

A collection of very useful MPV user scripts.
https://github.com/mpv-player/mpv/wiki/User-Scripts.

use Byzanz to capture your Linux desktop to a file for a certain duration.

https://github.com/ryanoasis/public-bash-scripts/blob/master/screen-capturing/byzanz-screencapture-monitor1.sh.

A nice packet capture and analysis utility, that is like tcpdump.

https://github.com/six-ddc/httpflow.

A very simple backup script for making a backup of your home directory, and then copying it to a safe place.

#!/usr/bin/perl -W
 
use strict;
use POSIX ("strftime");
# A script to backup some files.
my $homedir = "$ENV{'HOME'}";
my $user = $ENV{'LOGNAME'};
my $date = strftime("%A-%d-%B-%Y-%H-%M-%S", localtime);
my $backupdrive = "/media/$user/backups";
print "Which directory do you want to backup?n";
chomp(my $dir = <STDIN>);
 
if(!$dir) {
	print "No Directory selected!n";
	exit;
} else {
	my $target="$homedir/$dir";
	my $file = "$homedir/$user-$date.tgz";
	system("tar -cvf $file $target");
	print "nnSuccessful backup of directory: $dir.n";
# Naming the outfile.
	my $outfile="$user-$date.tgz";
# Moving the backup file to the destination.
	print "Moving the archive $outfile to the backup drive.n";
	system("mv $outfile $backupdrive");
 
# Checking to see if the backup file exists.
 
	my $filename = "$backupdrive/$outfile";
	if (-e $filename) {
		print "nnBackup file exists. Great Success!\n\n";
	}
	exit;
}

Glances. A nice new networking script for Linux that runs on Python.

https://securitronlinux.com/bejiitaswrath/glances-a-nice-new-networking-script-for-linux-that-runs-on-python/.

Useful Linux ideas and tips. Print graphical notifications from a shell script.

https://securitronlinux.com/bejiitaswrath/useful-linux-ideas-and-tips-print-graphical-notifications-from-a-shell-script/.

Universal archive unpacker script for Linux. Easily unpack any archive with the terminal.

https://securitronlinux.com/bejiitaswrath/universal-archive-unpacker-script-for-linux-easily-unpack-any-archive-with-the-terminal/.

How to use a Python script to extract information from the Firefox web browser.

https://securitronlinux.com/bejiitaswrath/how-to-use-a-python-script-to-extract-information-from-the-firefox-web-browser/.

Various Apple open-source software used by Mac OSX which also work on Linux.

https://opensource.apple.com/release/macos-10141.html.


Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.