Unix command and scripts

Unix operating system like solaris, AIX,linux is widely used . All the major installation will have Unix server at the base.

I am covering here  unix commands like awk,sed,find. Also this catagory consists of lot  of articles on Unix scripts

So this is one stop place for all unix command, unix scripts and various other unix features

 

How to use grep command in Unix and Linux with examples

grep command Means – globally search regular expression. It is very useful while searching for strings in Unix  and Linux operating system. Here we would be taking  a look on grep command in Unix with examples,Linux grep examples,grep command options,egrep command in Unix How to use grep command in Unix The grep utility searches text …

How to use grep command in Unix and Linux with examples Read More »

Find command

This Find command article is part of  Linux tutorials and it has detailed explanations, examples Find command in Unix is an extremely useful command. you can search for any file anywhere using this command provided that file and directory you are searching has read-write attributes set to you, your, group, or all. Find descends directory …

Find command Read More »

Simple View of Functions in Shell Script with some practical examples

Shell programming provides the feature of functions just like any other programming language. This helps us develop the program in a modular manner. Using functions in a shell script to perform repetitive tasks is an excellent way to create code reuse. Code reuse is an important part of modern object-oriented programming principles. What are functions in …

Simple View of Functions in Shell Script with some practical examples Read More »

tee command in Unix

In this article, we will be discussing the use cases of the tee  Unix command with examples. tee command tee   – Used in the middle of a pipeline, this command allows you to both redirect output to a file, and pass it to further commands in the pipeline. How to use tee command Examples: $check_patch_logs.ksh | …

tee command in Unix Read More »

tr command in Unix

In this article, we will be discussing the use cases of the tr  Unix command with examples. tr command tr is used to  Translate characters. Syntaxtr [-c] [-d] [-s] [string1] [string2] -c Complement the set of characters specified by string1. -d Delete all occurrences of input characters that are specified by string1. -s Replace instances of …

tr command in Unix Read More »

Scroll to Top