Category SHELL

GVIM Commands

GVIM commands and their usages If you are working on Linux platform then you must have to use the VIM editor to open, read and edit a file. In VLSI we all work on Linux platform and have to deal…

SED Commands

SED commands and their usages When we need to search, replace, insert, delete in a file then we use SED command. Opening a file in editor and then do search and replace will be lengthy process, to avoid this manual…

AWK Commands

AWK and CUT commands and their usage AWK commands Before going to look at the commands and their usage lets understand why we need AWK, what was the requirement which led us to use AWK commands. So if we need…

GREP Commands

GREP commands and their usages Before understanding about GREP lets understand why we need this and how this is helping us by saving our time from manual works. If I am looking for a particular string/specific pattern from a file…

Basic Linux Commands

List of Basic Linux Commands Create directory Mkdir is the command which we use to create directory, mkdir is short form of make directory. The command structure is as per below. mkdir <directory_name> Example mkdir ivlsi_physicalDesign Change Directory Change directory…