127 private links
Autotrash is a command line to automatically purge old trashed files and it never allows your trash folder to grow too big in Linux.
Terminal utility that allows you to use words coming from the standard input to create a nice selection window just below the cursor. Once done, your selection will be sent to standard output.
CLI: improved
Summary
- Cheat – Linux Commands cheat sheet.
- Cloudup – A tool to backup your GitHub repositories to bitbucket.
- Crypt – Encrypt and decrypt files.
- Cryptocurrency – Converts Cryptocurrency based on realtime exchange rates of the top 10 cryptos.
- Currency – Currency converter.
- Geo – Provides the details of wan, lan, router, dns, mac, and ip.
- Lyrics – Grab lyrics for a given song quickly from the command line.
- Meme – Command line meme creator.
- Movies – Search and display a movie details.
- Newton – Performs numerical calculations all the way up to symbolic math parsing.
- Qrify – Turns the given string into a qr code.
- Short – URL Shortner
- Siteciphers – Check which ciphers are enabled / disabled for a given https site.
- Stocks – Provides certain Stock details.
- Taste – Recommendation engine that provides three similar items like the supplied item (The items can be books, music, artists, movies, and games etc).
- Todo – Command line todo manager.
- Transfer – Quickly transfer files from the command line.
- Weather – Displays weather details of your place.
- Youtube-Viewer – Watch YouTube from Terminal.
Building command line tools in Bash is an extremely tedious and somewhat enigmatic task. There's quite a bit of boilerplate code you're going to have to write if you want your script to do more than just one thing, which will only clutter your script. In addition, your scripts will likely never be able to reference good code you've written from old scripts.
Ash helps you get rid of all of your boilerplate by letting you call functions directly from the command line, while also providing a modular approach to scripting which will allow you to share code between scripts.
You are able to build a module independently that functions as a CLI or as a library (or any combination of the two), and easily share your module with the world.
restic
is a program that does backups right.
Features
- Easy: Doing backups should be a frictionless process, otherwise you are tempted to skip it.
Restic
should be easy to configure and use. - Fast: Backing up your data with
restic
should only be limited by your network or hard disk bandwidth so that you can backup your files every day. - Verifiable:
restic
enables you to easily verify that all data can be restored. - Secure:
Restic
uses cryptography to guarantee confidentiality and integrity of your data. The location where the backup data is stored is assumed to be an untrusted environment. - Efficient: With the growth of data, additional snapshots should only take the storage of the actual increment.
- Free:
restic
is free software and licensed under the BSD 2-Clause License and actively developed on GitHub.
Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.
- is a simple way to create a CLI in Python.
- is a helpful tool for developing and debugging Python code.
- helps with exploring existing code or turning other people's code into a CLI.
- makes transitioning between Bash and Python easier.
- makes using a Python REPL easier by setting up the REPL with the modules and variables you'll need already imported and created.
Python Fire is a library for automatically generating command line interfaces (CLIs) from absolutely any Python object.
- is a simple way to create a CLI in Python.
- is a helpful tool for developing and debugging Python code.
- helps with exploring existing code or turning other people's code into a CLI.
- makes transitioning between Bash and Python easier.
- makes using a Python REPL easier by setting up the REPL with the modules and variables you'll need already imported and created.
A Python 3 Command-Line Interface to interact with a Shaarli instance.
In this post you'll learn how to send emails from the Linux command line. I'll show the most often used commands, SMTP configuration and terminal options.
Today, a fellow Linux user asked me how to find the oldest file in a directory from command line in Linux. We could tell the oldest file in a directory by using the date and time...
There are plenty of file sharing utilities on the web. Some of them are CLI-based, and some of them are GUI-based. Some of them are free, and some of them are paid. When it comes to share or transfer large files from command line over Internet, there are only a few.
One of them is Transfer.sh. No, it isn’t a script, it is a website. It allows you to share files over Internet easily and quickly. You don’t need to install anything except cURL or wget. Most of the Linux distributions comes preinstalled with those utilities, so you don’t need to install anything, really.