Feb 17

BASH Shell commands less ( commands for linux )

Viewing the content of files using cat works just fine, if all you want is a quick look at a small file. Larger files can prove to be problematic for cat to handle. That is where less comes in. Less provides you with a more flexible view of files and also allows you to do much much more. For a full tutorial on the usage of less with examples check out this video tutorial.

Feb 12

BASH Shell commands mv ( commands for linux )

mv move command ( commands for linux )The mv (move command) is one of those commands that has a double function, due to the way that it accomplished its tasks. With the move command you can rename files and directories without moving them as well as move files and directories around, which is what it is designed for. To find out how to use the move command check out this full tutorial.

Feb 12

BASH Shell commands cp ( commands for linux )

cp copy command commands for linuxThe cp (copy) command allows you to make copies of files or directories from anywhere in you filesystem to anywhere. Just another one of the basic Shell commands that you will find yourself using very often. For a full tutorial of the usage of cp and some of the pitfalls to avoid check out this tutorial.

Feb 05

BASH Shell commands rm and rmdir ( commands for linux )

Up until now we have been creating files and directories, but how do you remove them? That is where rm and rmdir come in. This tutorial takes you through the usage’s of rm and rmdir. It also covers some of the common pitfalls that you might encounter when using rm and rmdir. Check it out now on youtube.

Jan 24

BASH Shell commands mkdir ( commands for linux )

make directoryThe mkdir command, standing for make directory is invaluable when using any Linux system. Its sole purpose is to allow you to make directories and directory structures. Using mkdir instead of the GUI to create your directories in a lot faster and actually requires less steps! For a full explanation of mkdir’s usage and some examples click here.

Jan 24

BASH Shell commands redirection ( commands for linux )

redirect tutorialInput output redirection is a very useful concept, and something that any Linux user should learn to use. Redirection allows you to control where you want to send data rather than being restricted by a programs predisposition to just show you the data on screen. To find out more about redirection and its uses in Linux check out this tutorial.

Jan 24

BASH Shell commands cat ( commands for linux )

cat commandThe cat command which gets its name from the word catenate, has a very basic function that is to take some kind of input file, or input from stdin (the keyboard) and write it somewhere else. This could be to stdout(the screen) or another file. Cat is a very versitile tool and is able to work with any file type, whether it be a text file or a binary file. You can also use cat to view the content of a file right in the terminal window, by simply typing cat and then the name of the file you wish to view. To see cat in action check out this video tutorial on cat usage.

Jan 22

BASH Shell commands ls ( commands for linux )

ls tutorialls is a command that you will find yourself using very often. Its function is to show you the contents of a directory, but it doesn’t end there. Just being able to view a directories content is very useful, but viewing specifically what you want the way you want to see it is even better. By manipulating ls’s output with a few short options you are able to see specifically what you want, and if that is everything you can do that as-well. For a walkthrough of some of ls’s coolest features click here.

Jan 22

BASH Shell commands cd ( commands for linux )

cd commandThe cd command in one of the most useful commands for navigating your Linux file system. It has many options that enable you to move between directories with ease and speed. Learning how to use the basic functionality of cd is a must for any Linux user. Learning how to use its options will allow you to work faster with less keystrokes (which is always a good thing). To check out the full tutorials click here.

Jan 22

BASH Shell commands pwd ( commands for linux )

The PWD command, which is an acronym for Print Working Directory does exactly what it says it does it prints out the path to the directory that you are currently working in. To put it in another way, it tells you where you are. For the full video tutorial on the usage of pwd check out this tutorial.

Older posts «