Links
-
Recent Posts
Recent Comments
Archives
- December 2019
- November 2019
- October 2019
- September 2019
- August 2019
- July 2019
- June 2019
- May 2019
- April 2019
- March 2019
- February 2019
- January 2019
- December 2018
- November 2018
- October 2018
- September 2018
- August 2018
- July 2018
- June 2018
- May 2018
- April 2018
- March 2018
- February 2018
- January 2018
- December 2017
- November 2017
- October 2017
- September 2017
- August 2017
- July 2017
- June 2017
- May 2017
- April 2017
- March 2017
- February 2017
- January 2017
- December 2016
- November 2016
- October 2016
- September 2016
Meta
Category Archives: bash
Linux Fu: Debugging Bash Scripts
A recent post about debugging constructs surprised me. There were quite a few comments about how you didn’t need a debugger, as long as you had printf
. For that matter, we’ve all debugged systems where you had nothing but an LED to flash or otherwise turn on to communicate …read more
Posted in bash, bashdb, debugging, Hackaday Columns, Linux Fu, linux hacks, shell script, Skills
Leave a comment
Linux Fu: Shell Scripts in C, C++, and Others
At first glance, it might not seem to make sense to write shell scripts in C/C++. After all, the whole point to a shell script is to knock out something quick and dirty. However, there are cases where you might want to write a quick C program to do something …read more
Posted in bash, c++, gcc, Hackaday Columns, linux, linux hacks, scripting, Skills
Leave a comment
Secret Messages Could be Hiding in Your Server Logs
[Ryan Flowers] writes in with a clever little hack that can allow you to hide data where nobody is going to go looking for it. By exploiting the fact that a web server will generally log all HTTP requests whether or not it’s valid, he shows how you can covertly …read more
Posted in bash, covert channel, curl, dead drop, encode, software hacks, web server
Leave a comment
Easy Git Repository Summaries With Web-git-sum
For those hosting their own git repositories there are a number of solutions for creating convenient web-accessible front ends, but [mitxela] wasn’t quite satisfied with any of them. After trying a number of alternatives and reflecting on his requirements, he realized that all he really needed was a summary page …read more
Posted in bash, Git, github, private server, repository, software, Software Development, web-git-sum
Leave a comment
Linux Fu: The Kitchen Sync
One of the great things about Linux and similar operating systems is they are configurable. If you don’t like something, there’s a great chance you can change it easily with a few entries in a file somewhere. For example, take bash — a very popular shell by any measure. If you want a different style of command line editing, there’s an option. You want the tab key to match files regardless of case? Another option. Usually, these are set in one of your so-called profile files like .bashrc
in your home directory.
As long as you are sitting in front …read more
Posted in bash, Hackaday Columns, linux, Linux Fu, linux hacks
Leave a comment
Linux Fu: Modernize Your Command Line
If you use Linux and its associated tools on the desktop or on a Raspberry Pi, or on a server, you probably have used the command line. Some people love it and some people hate it. However, many of us have been using Linux for years and sometimes Unix before that, and we tend to use the same old tried-and-true tools. [Remy Sharp] had a recent post talking about how he had created aliases to replace those old tools with great modern replacements and it is definitely worth a read.
We’ll be honest, when we first saw the post we …read more
Posted in bash, command line, linux, Linux Fu, linux hacks
Leave a comment