Learning Bash-Shell Commands-Tutorial-3

1. mv command : It is used for file from one directories to another.You have to first enter the file_name(that you want to move) and then the new location of that file. SYNTAX : mv filename new_location rk10@rk-desktop:~/Desktop/log$ ls passwd.txt rk10@rk-desktop:~/Desktop/log$ cd ../ rk10@rk-desktop:~/Desktop$ cd test rk10@rk-desktop:~/Desktop/test$ ls login.txt  xyz.txt rk10@rk-desktop:~/Desktop/test$ mv login.txt /home/rk10/Desktop/log rk10@rk-desktop:~/Desktop/test$ …

Learning bash-commands- tutorial-2

An easy way to learn linux commands-tutorial-2 1. pwd command : To see the current working directory use pwd command. SYNTAX : pwd rk10@rk-desktop:~$ pwd /home/rk10 rk10@rk-desktop:~$ #For more information on cd command just type help cd ,in your bash shell. 2. cp command : It is used for copying the files from one directory …

Easy Way to learn bash commands-tutorial-1|Linux-Ubuntu CLI

Bash comes installed with the most of the linux distribution(With MAC-OS also) such as in Ubuntu. The aim of this tutorial to explain about the need and importance about the bash commands followed by the practical use of basic commands. These days there are so many excellent charming and cool graphical user interfaces are available …

How To Learn Ubuntu-Linux Commands

Learning bash/zsh/ssh shell commands is not so complex and boring as it seems.In fact when you will start learning bash shell commands then its initial steps may  looks ugly but when you will have some basic idea about commands then afterwards you will feel a keen interest in learning further commands.Working on command  line  interface …

Programming Environment in Ubuntu-Linux

Ubuntu – a GNU/Linux distribution, comes with the default text editor “gedit” ( it is the default text editor in GNOME desktop package and ubuntu comes with GNOME desktop by default), which is an excellent source code editor. Gedit supports syntax coloring/highlighting/.. and it catches the proper coloring with the extension.Hence you should give the …