sed : find the pattern (keyword) and delete the line from file
|

sed : find the pattern (keyword) and delete the line from file

sed is stream line editor utility in unix operating systems.sed is a line-oriented text processing utility: it reads text, line by line, from an input stream or file, into an internal buffer called the pattern space. Each line read starts a cycle. To the pattern space, sed applies one or more operations which have been…

How to list users above or below particular user id
|

How to list users above or below particular user id

In rare cases, you will find sometimes we need to list users above or below particular user id. Such requirement mostly come when you are playing around users related troubleshooting. For an example, we want to list the users which are above userid 500 in Linux System. The user related information like username and user…

grep command to find multiple strings or keyword from file

grep command to find multiple strings or keyword from file

This post explains about grep command to find multiple strings or keyword from file. In Linux or Unix like operating system, the grep command utility is widely used. Grep is a command-line utility for searching plain-text data sets for lines matching a regular expression. Grep was originally developed for the Unix operating system, but is…

How to install libxml2 and libxslt packages on CentOS 6.5

How to install libxml2 and libxslt packages on CentOS 6.5

The post is about how to install libxml2 and libxslt packages on CentOS 6.5 . The method is applicable to Red Hat based distro . libxml2 is a software library for parsing XML documents. It is also the basis for the libxslt library which processes XSLT-1.0 stylesheets. (Reference : Wikipedia) libxslt is the XSLT C…