Softpanorama

May the source be with you, but remember the KISS principle ;-)
Home Switchboard Unix Administration Red Hat TCP/IP Networks Neoliberalism Toxic Managers
(slightly skeptical) Educational society promoting "Back to basics" movement against IT overcomplexity and  bastardization of classic Unix

Shell Scripts Collections

News

See also

Recommended  Links

  Unix shells history Humor Etc

See SHELLdorado - Links for more info. Shelldorado is a highly recommended website. You should visit it first.

NEWS CONTENTS

Old News

[Jul 16, 2017] A Collection Of Useful BASH Scripts For Heavy Commandline Users - OSTechNix

Notable quotes:
"... Provides cheat-sheets for various Linux commands ..."
Jul 16, 2017 | www.ostechnix.com
Today, I have stumbled upon a collection of useful BASH scripts for heavy commandline users. These scripts, known as Bash-Snippets , might be quite helpful for those who live in Terminal all day. Want to check the weather of a place where you live? This script will do that for you. Wondering what is the Stock prices? You can run the script that displays the current details of a stock. Feel bored? You can watch some youtube videos. All from commandline. You don't need to install any heavy memory consumable GUI applications.

Bash-Snippets provides the following 12 useful tools:

  1. currency – Currency converter.
  2. stocks – Provides certain Stock details.
  3. weather – Displays weather details of your place.
  4. crypt – Encrypt and decrypt files.
  5. movies – Search and display a movie details.
  6. taste – Recommendation engine that provides three similar items like the supplied item (The items can be books, music, artists, movies, and games etc).
  7. short – URL Shortner
  8. geo – Provides the details of wan, lan, router, dns, mac, and ip.
  9. cheat – Provides cheat-sheets for various Linux commands .
  10. ytview – Watch YouTube from Terminal.
  11. cloudup – A tool to backup your GitHub repositories to bitbucket.
  12. qrify – Turns the given string into a qr code.
Bash-Snippets – A Collection Of Useful BASH Scripts For Heavy Commandline Users Installation

You can install these scripts on any OS that supports BASH.

First, clone the GIT repository using command:

git clone https://github.com/alexanderepstein/Bash-Snippets

Sample output would be:

Cloning into 'Bash-Snippets'...
remote: Counting objects: 1103, done.
remote: Compressing objects: 100% (45/45), done.
remote: Total 1103 (delta 40), reused 55 (delta 23), pack-reused 1029
Receiving objects: 100% (1103/1103), 1.92 MiB | 564.00 KiB/s, done.
Resolving deltas: 100% (722/722), done.

Go to the cloned directory:

cd Bash-Snippets/

Git checkout to the latest stable release:

git checkout v1.11.0

Finally, install the Bash-Snippets using command:

sudo ./install.sh

This will ask you which scripts to install. Just type Y and press ENTER key to install the respective script. If you don't want to install a particular script, type N and hit ENTER.

[Apr 05, 2010] Problem with rmlines

As of April 4 this problem was not independently verified, but caution in usage of script is recommended.

I have used rmlines (http://comp.eonworks.com/scripts/rmlines); but found it to be faulty. Though it worked on my test case, a larger file contained a number of lines that were processed erroneously. I have send a mail to the developer, who wrote back he had no time to look into the (confirmed) problem. On request, I can offer all details, test case, etc. My personal suggestion would be, to remove the link.

Here I used it for administrating a large production server, and it missed out on about 2-3% of the occurrences; to my dismay (and the frustration of my users).

Thanks again, Uwe

Recommended Links

Linux shell scripts, Bash scripting, shell programming

Admin


bkernel v1.2 builds linux kernels 2.2.xx and 2.4.xx
lowspace v1.5 notify when space on a device is less then n Megabytes
lowswap v1.3 notify when free swap memory is less then n Megabytes
monproc v1.1 monitor processies; print when specified processies are/not running
progsv v1.2 list version numbers of important programs installed

Compress


unpack2dir v1.2 unpack zip, tar, tgz, tar.gz, tar.bz2, tar.z to a dir of the same name as archive prefix
zipfile v1.1 zip a single file

Desktop


xbreak v1.0 display an X window message when it's time to take a break
xmesg v1.0 display an X window message on a regular basis

File


cpfound v1.1 recursively find files and copy to a specified dir
cpverify v1.3 verify that copied/burned files have been written error free
crfilen v1.0 create a file n bytes large
filesize v1.2 print sum of the actual size of files
fnchars v1.0 print name of file if it has more then n chars in its name
neatname v1.3 neatly rename files
samesize v1.0 list files of same size in current dir
sfiles v1.1 recursively search files for strings; list found files in sorted order
subspace v1.4 substitute space in a file and dir name with an _

Graphics


2bmp v1.1 convert image file to bmp format
2jpg v1.4 convert image file to jpg format
2png v1.3 convert image file to png format
pngoptim v1.0 reduce the size of a PNG file if possible
resizeimg v1.2 resize bitmap image

Misc


loggedin v1.1 notify when a particular user has logged in
loggedout v1.1 notify when a particular user has logged out
obfsh v1.2 shell script obfuscator
rotcmd v1.0 rotate commands listed in a file if file execution has been interrupted
sman v1.0 search man page for a string, highlight found strings
srfc v1.1 search local rfc file for a string, highlight found strings

Network


bytetraf v1.0 continually display byte traffic on a network interface
killppp v1.0 kill ppp pid after n seconds|minutes|hours|days of no traffic

Security


rootkitwr v1.0 chkrootkit wrapper; designed to run at regular intervals

System


timelykill v1.0 kill process pid after n seconds|minutes|hours|days
whichbin v1.0 show links and path to executable

Text


insertext v1.1 insert text file into another file at line n
longl v1.0 print name of the file that contains lines longer then n chars
pdf2txt v1.0 convert pdf file to ascii text; write the converted file to disk
ps2txt v1.0 convert ps file to ascii text; write the converted file to disk
rmblanks v1.2 remove empty or blank lines from an ascii file; replace the original file
rmdups v1.0 remove duplicate lines from file or stdin
rmleads v1.1 remove empty leading spaces from an ascii file; replace input file
rmlines v1.0 remove lines that contain words stored in a list
[Apr 05, 2010] Note from Softpanorama: a user reported errors in this script. To remove several substrings ((sequences of alphanumeric characters not delimited by blanks or delimiters) one can use egrep -v, for example:

egrep -v "word1|word2|word3" file > new_file

For words in the meaning of sequences of alphanumeric characters delimited by spaces or delimiters Perl script will be provided later

word2txt v1.0 display ms word doc file in ascii format
wraptext v1.0 wrap text file at 80th column; replace file with the wrapped version

WWW


emailadext v1.0 extract email addresses from file or stdin
html2txt v1.1 convert html file to ascii text; write the converted file to disk
htmloptim v1.2 optimize html file by reducing its size
okurl v1.0 validate a list of urls for their existence
urlext v1.2 extract url addresses from file or stdin



Etc

Society

Groupthink : Two Party System as Polyarchy : Corruption of Regulators : Bureaucracies : Understanding Micromanagers and Control Freaks : Toxic Managers :   Harvard Mafia : Diplomatic Communication : Surviving a Bad Performance Review : Insufficient Retirement Funds as Immanent Problem of Neoliberal Regime : PseudoScience : Who Rules America : Neoliberalism  : The Iron Law of Oligarchy : Libertarian Philosophy

Quotes

War and Peace : Skeptical Finance : John Kenneth Galbraith :Talleyrand : Oscar Wilde : Otto Von Bismarck : Keynes : George Carlin : Skeptics : Propaganda  : SE quotes : Language Design and Programming Quotes : Random IT-related quotesSomerset Maugham : Marcus Aurelius : Kurt Vonnegut : Eric Hoffer : Winston Churchill : Napoleon Bonaparte : Ambrose BierceBernard Shaw : Mark Twain Quotes

Bulletin:

Vol 25, No.12 (December, 2013) Rational Fools vs. Efficient Crooks The efficient markets hypothesis : Political Skeptic Bulletin, 2013 : Unemployment Bulletin, 2010 :  Vol 23, No.10 (October, 2011) An observation about corporate security departments : Slightly Skeptical Euromaydan Chronicles, June 2014 : Greenspan legacy bulletin, 2008 : Vol 25, No.10 (October, 2013) Cryptolocker Trojan (Win32/Crilock.A) : Vol 25, No.08 (August, 2013) Cloud providers as intelligence collection hubs : Financial Humor Bulletin, 2010 : Inequality Bulletin, 2009 : Financial Humor Bulletin, 2008 : Copyleft Problems Bulletin, 2004 : Financial Humor Bulletin, 2011 : Energy Bulletin, 2010 : Malware Protection Bulletin, 2010 : Vol 26, No.1 (January, 2013) Object-Oriented Cult : Political Skeptic Bulletin, 2011 : Vol 23, No.11 (November, 2011) Softpanorama classification of sysadmin horror stories : Vol 25, No.05 (May, 2013) Corporate bullshit as a communication method  : Vol 25, No.06 (June, 2013) A Note on the Relationship of Brooks Law and Conway Law

History:

Fifty glorious years (1950-2000): the triumph of the US computer engineering : Donald Knuth : TAoCP and its Influence of Computer Science : Richard Stallman : Linus Torvalds  : Larry Wall  : John K. Ousterhout : CTSS : Multix OS Unix History : Unix shell history : VI editor : History of pipes concept : Solaris : MS DOSProgramming Languages History : PL/1 : Simula 67 : C : History of GCC developmentScripting Languages : Perl history   : OS History : Mail : DNS : SSH : CPU Instruction Sets : SPARC systems 1987-2006 : Norton Commander : Norton Utilities : Norton Ghost : Frontpage history : Malware Defense History : GNU Screen : OSS early history

Classic books:

The Peter Principle : Parkinson Law : 1984 : The Mythical Man-MonthHow to Solve It by George Polya : The Art of Computer Programming : The Elements of Programming Style : The Unix Hater’s Handbook : The Jargon file : The True Believer : Programming Pearls : The Good Soldier Svejk : The Power Elite

Most popular humor pages:

Manifest of the Softpanorama IT Slacker Society : Ten Commandments of the IT Slackers Society : Computer Humor Collection : BSD Logo Story : The Cuckoo's Egg : IT Slang : C++ Humor : ARE YOU A BBS ADDICT? : The Perl Purity Test : Object oriented programmers of all nations : Financial Humor : Financial Humor Bulletin, 2008 : Financial Humor Bulletin, 2010 : The Most Comprehensive Collection of Editor-related Humor : Programming Language Humor : Goldman Sachs related humor : Greenspan humor : C Humor : Scripting Humor : Real Programmers Humor : Web Humor : GPL-related Humor : OFM Humor : Politically Incorrect Humor : IDS Humor : "Linux Sucks" Humor : Russian Musical Humor : Best Russian Programmer Humor : Microsoft plans to buy Catholic Church : Richard Stallman Related Humor : Admin Humor : Perl-related Humor : Linus Torvalds Related humor : PseudoScience Related Humor : Networking Humor : Shell Humor : Financial Humor Bulletin, 2011 : Financial Humor Bulletin, 2012 : Financial Humor Bulletin, 2013 : Java Humor : Software Engineering Humor : Sun Solaris Related Humor : Education Humor : IBM Humor : Assembler-related Humor : VIM Humor : Computer Viruses Humor : Bright tomorrow is rescheduled to a day after tomorrow : Classic Computer Humor

The Last but not Least Technology is dominated by two types of people: those who understand what they do not manage and those who manage what they do not understand ~Archibald Putt. Ph.D


Copyright © 1996-2021 by Softpanorama Society. www.softpanorama.org was initially created as a service to the (now defunct) UN Sustainable Development Networking Programme (SDNP) without any remuneration. This document is an industrial compilation designed and created exclusively for educational use and is distributed under the Softpanorama Content License. Original materials copyright belong to respective owners. Quotes are made for educational purposes only in compliance with the fair use doctrine.

FAIR USE NOTICE This site contains copyrighted material the use of which has not always been specifically authorized by the copyright owner. We are making such material available to advance understanding of computer science, IT technology, economic, scientific, and social issues. We believe this constitutes a 'fair use' of any such copyrighted material as provided by section 107 of the US Copyright Law according to which such material can be distributed without profit exclusively for research and educational purposes.

This is a Spartan WHYFF (We Help You For Free) site written by people for whom English is not a native language. Grammar and spelling errors should be expected. The site contain some broken links as it develops like a living tree...

You can use PayPal to to buy a cup of coffee for authors of this site

Disclaimer:

The statements, views and opinions presented on this web page are those of the author (or referenced source) and are not endorsed by, nor do they necessarily reflect, the opinions of the Softpanorama society. We do not warrant the correctness of the information provided or its fitness for any purpose. The site uses AdSense so you need to be aware of Google privacy policy. You you do not want to be tracked by Google please disable Javascript for this site. This site is perfectly usable without Javascript.

Last modified: April 23, 2019