facebook youtube pinterest twitter reddit whatsapp instagram

Guides

Send Mail with Attachment Using Mutt in GNU/Linux

Thu, 06 AugBy DevsrealmGuy
Mutt is a powerful text-based mail client for Unix/Linux operating systems. It features color support, message threading, MIME support...

Working With Variables In Bash

Thu, 06 AugBy DevsrealmGuy
A variable is a value that can change depending on conditions or data passed to the program. To work with the variable in bash, here are what you need to know: A variable name cannot start with a nu

Pipes and Redirection in Bash

Thu, 06 AugBy DevsrealmGuy
Piping is the process where the result of one command is sent or pipe (redirect) into another command. A good example of this is piping the output of ls command into wc (count) for counting the numbe
Chances are you've come across expansions in BASH, whenever you are going back to the user home directory, we use the cd command alongside a tilde character (~), e.g: cd ~ This would take you back to

Week 7 Update

Fri, 31 JulBy DevsrealmGuy
In week 6, I said I'll lay more focus on bash scripting, so far, I haven't done much, still playing around with the basic, Here are the guides I wrote last week: Properly Naming a Bash Scripts Using

Using read in a Bash Script

Tue, 28 JulBy DevsrealmGuy
We previously looked at using echo with options in a shell, in this guide we would combine it with read command to prompt for user input. Create and open up a new text file: nano $HOME/bin/hw3.sh Ad

Adding Comment To a Script

Tue, 28 JulBy DevsrealmGuy
In shell scripting, a comment is a readable explanation in a script that is ignored by the interpreter, you can either add a comment about what the script does or you can write a comment about what a

Using echo with Options in a Shell (With Examples)

Tue, 28 JulBy DevsrealmGuy
The echo command is one of the most used shell built-in command, and as you have probably guessed, it is used to print a line of text to standard output (the screen). It sends a copy of an input sign

Properly Naming a Bash Scripts

Tue, 28 JulBy DevsrealmGuy
Last week, I wrote a basic intro on bash shell scripting in this guide, we would take a look at how to name a script properly. Let's get this straight, we mostly do name things abruptly in the real
I previously wrote a guide on how to mount and unmount rclone in Linux, in this guide, I’ll walk you through on how to do the same on a windows system. Step 1: Download Rclone First, go to rclone d