Skip to main content

Unix Commands Part 5

Shell and programming


Shell programming,bourne shell, ksh, csh, echo,line,sleep, test,cc compiler.

Shell programming concepts and commands.

Shell programming is integral part of Unix operating systems. Shell is command line userinterface to Unix operating system, User have an option of picking an interface on Unix such as ksh, csh, or default sh., these are called shells(interface). Shell programming is used to automate many tasks. Shell programming is not a programming language in the truest sense of word since it is not compiled but rather an interpreted language. Unix was written in C language and thus c language is integral part of unix and available on all versions. Shells, like ksh and csh are popular shells on unix although there are 5 or 6 different shells available but I will only be discussing ksh and csh as well as sh. Common features among all shells are job control, for example if I am running a processes which is searching the whole system for .Z files and output is directed to a file named compressedfiles.

    example:
  • find / -name *.Z -print > compressedfiles

    then after entering this command hitting


  • key will suspend this job, then entering
  • bg

    at command line will put this job in background, entering
  • fg

    will put this job in foreground. Entering
  • jobs

    at command line will show me all my concurrent jobs that are running.
      Other common features
    • > will redirect output from standard out (screen) to file or printer or whatever you like.
    • >> filename will append at the end of a file called filename.
    • < will redirect input to a process or commnand.
    • | pipe output, or redirect output, good for joining commands, i.e. find command with cpio, etc.
    • & at the end of command will run command in background.
    • ; will separate commands on same line.
    • * will match any characters in a file or directories. junk* will match all files with first 4 letters
    • ? will match single characters in a file.
    • [] will match any characters enclosed.
    • () execute in subshell.
    • ` ` to run a command inside another command and use its output.
    • " " partial quote for variables.
    • ' ' full quote for variables.
    • # begin comment (if #/bin/ksh or csh or sh is entered at first line of script it runs script in that shell)
    • bg background execution.
    • break break from loop statements.
    • continue Resume a program loop.
    • Kill pid number will terminate running jobs
    • stop will stop background job.
    • suspend will suspend foreground job.
    • wait will wait for a background job to finish.

Bourne Shell (sh shell).

sh or Bourne shell is default shell of Unix operating systems and is the most simplest shell in Unix systems.

    Examples:
  • cd; ls execute one after another.
  • (date;who;pwd)> logifile will redirect all the output from three commands to a filenamed logfile.
  • sort file | lp will first sort a file and then print it.
  • alias [options] [name[='command']] will let you create your own commands. i.e.
    • alias ll="ls -la" will execute `ls -la` command whenever ll is entered.
  • let expressions is syntax of let statement.
    • let i=i+1 will work as a counter with i incrementing each time this statement is encountered.
  • for x[in list] do commands done is syntax for for do loop.
  • function name {commands;} is the syntax of a function which can be called from anywhere in program.
  • if condition1 then commands1 elif condition2 then commands2 ... ... ... else commands3 fi

Ksh shell (Korn).

Ksh or Korn shell is widely used shell.


Csh or C shell

csh is second most used shell.


Echo command

echo command in shell programming.


Line command.

line command in shell programming.


Sleep command.

sleep command in shell programming.


Test Command.

test command in shell programming.


CC compiler (c programming language compiler).

Since Unix is itself written in C programming language, most Unix operating systems come with c compiler called cc.




Comments

Popular posts from this blog

INSTALL CISCO VPN CLIENT ON WINDOWS 10 (32 & 64 BIT). FIX REASON 442

This article shows how correctly install Cisco VPN Client (32 & 64 bit) on Windows 10 (32 & 64 bit) using simple steps, overcome the ‘ This app can’t run on this PC ’ installation error , plus fix the Reason 442: Failed to enable Virtual Adapter error message . The article applies to New Windows 10 installations or Upgrades from earlier Windows versions and all versions before or after Windows 10 build 1511 .  To simplify the article, we’ve broken it into the following two sections: How to Install Cisco VPN client on Windows 10 (clean installation or upgrade from previous Windows), including Windows 10 build prior or after build 1511 . How to Fix Reason 442: Failed to enable Virtual Adapter on Windows 10 Figure 1. The Cisco VPN Client Reason 442: Failed to enable Virtual Adapter error on Windows 10 HOW TO INSTALL CISCO VPN CLIENT ON WINDOWS 10 (NEW INSTALLATIONS OR O/S UPGRADES) The instructions below are for new or clean Windows 10 inst...

Linux File and Directory Permissions

file & directory protection is a essential of any OS and Linux OS is no exception for it! These authorizations allow you to choose exactly who can access your files & directory, providing an overall improved system security. There was one of the major flaws in the older Windows operating-system where, by standard, all users can see each other people's information (Windows 95, 98, Me). For overcoming it, editions of the Windows based computer system such as NT, 2000, XP and 2003 lot more security features added. They fully support file & directory permissions, just as Linux system has since the beginning. Together, we'll now assess a directory listing from our Lab Linux system hosting server, to help us understand the information provided. a simple 'ls' command will give you the file and directory listing within a given directory, including the option  '-l' will display number of new areas that we are going to discuss here:

How to create a Hirens Boot CD 15.2 USB Disk

Hiren’s BootCD (HBCD) is a bootable CD that contains a set of tools that can help users to fix their computer if their system fails to boot. More specifically, HBCD contains hardware diagnostic programs, partition tools, data recovery utilities, antivirus tools and many other tools to fix your computer problems.  I write this article because I use Hiren’s BootCD frequently to troubleshoot computer problems, specially when a computer doesn’t boot anymore due to a virus attack or due to a corrupted file system. In this article you will find instructions on how to put Hiren’s BootCD on a USB flash drive (stick) in order to troubleshoot computer problems in the future.