6513292 Mrits Unix And Shell Programming Lab Manual For 2nd Year Btech Jntu L Ramkumar Mrits

  • May 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View 6513292 Mrits Unix And Shell Programming Lab Manual For 2nd Year Btech Jntu L Ramkumar Mrits as PDF for free.

More details

  • Words: 1,390
  • Pages: 4
UNIX & SHELL PROGRAMMING LAB MANUAL FOR II YEAR CSE-A & IT-B 1) Use the cat command to create a file containing the following data. Call it my table. Sort the mytable. Swap fields 2 and 3 of mytable. Call it mytable. Print the new file mytable. Ans) a) Creating the file mytable. Use tabs to separate the fields. $ cat > mytable 1425 Ravi 15.65 4320 Ram 26.27 6830 Raj 36.15 1450 Sita 21.86 ^d b) Displaying the file mytable contents: $ cat mytable c) Sorting the file mytable: $ sort mytable d) Swaping the fields 2 and 3 $ cut –f1 mytsble >file1 $ cut -f2 mytable >fie2 $ cut -f3 mytable >file3 $ cut -f4 mytable >file4 $ paste file1 file3 file2 file4 >mytable $ cat mytable f) Printing the file mytable: $ lpr mytable 2. a) Use the appropriate command to determine your login shell Ans) $echo “the login shell is $SHELL” b) Use the appropriate command to determine your Current working shell Ans) $echo “the login shell is $0” c) Use the date and who commands in sequence (in one line) such that the output of the date will display on the screen and the output of who will be redirected to a file called myfile2.Use the more command to check thee contents of myfile2. Ans) $date ; who > myfile2 $more myfile2 3) a) Write a sed command that deletes second character in each line in a file Ans) Delete second character: sed "s/^\(.\)./\1/" file1 b) Write a sed command that deletes the character before the last character in each line in a file Ans) Delete character before last character: sed "s/.\(.\)$/\1/" file1 c) Write a sed command that deletes the word before the last word in each line in a file Ans) Delete word before last word: sed "s/ *[^ ]*\( *[^ ]*\)$/\1/" file1 d) Develop an interactive grep script that asks for a word and a file name and tells how many lines contains that word Ans) $ grep –c word filename 4) Write a shell script that takes a command line argument and reports on whether it is a directory File, or a regular file, or something else. Ans) #!/bin/csh if( -f "$argv[1]") then echo "you have entered a regular file name" else if( -d "$argv[1]") then echo "you have entered a directory file"

Send SMS to 567678 as JOIN MRITSCSE if you are II CSE student to get regular college updates Send SMS to 567678 as JOIN MRITSIT if you are II IT student to get regular college updates

1

UNIX & SHELL PROGRAMMING LAB MANUAL FOR II YEAR CSE-A & IT-B else

if( -l "$argv[1]") then echo "you have entered a symbolic link file" endif endif endif 5) Write a shell script that accepts one or more file name as arguments and converts all of them to uppercase, provided they eexist in the current directory Ans) #!/bin/csh set c = 1 set x = $#argv while( $x != 0) tr '[a-z]' '[A-Z]' <$argv[$c] @ c = $c + 1 @ x = $x - 1 End 6) Write a shell script that accepts a file name starting and ending numbers as Arguments and displays all the linees between the given line numbers. Ans) #!/bin/csh head -$argv[3] $argv[1] | tail -n $argv[2] 7) Write a shell script that deletes all lines containing a specified word in one or more files supplied as arguments to it. Ans) #!/bin/csh grep -v $argv[1] $argv[2] 8) Write a shell script that computes the gross salary of a employee according To the following rules a) if basic salary is < 1500 then HRA=10% of the basic salary and DA=90% of basic b) if basic salary is >=1500 theen HRA=Rs 500 and DA=98% of basic The basic salary is entered interactively through the keyboard Ans) #!/bin/ksh #ALL RIGHTS RESERED TO TECHNOCONNECT TEAM www.mritstechnoconnect.co.nr print Enter Basic salary read bs if((bs < 1500 )) then hra=$( (( bs * 0.1 )) ) print hra=$hra da=$( (( bs * 0.9 )) ) print dra=$da else hra=500 print hra=$hra da=$( (( bs * 0.98 )) ) print da=$da fi gs=$( (( bs + hra + da )) ) print Gross salary=Rs $gs 9) Write a shell script that accepts two integers as its arguments and computes the Value of first number raised to the power of the second number. Ans) #!/bin/csh set c = 1 set result = 1 while($c <= $argv[2])

Send SMS to 567678 as JOIN MRITSCSE if you are II CSE student to get regular college updates Send SMS to 567678 as JOIN MRITSIT if you are II IT student to get regular college updates

2

UNIX & SHELL PROGRAMMING LAB MANUAL FOR II YEAR CSE-A & IT-B @ result *= $argv[1] @ c = $c + 1 end echo "$argv[1] raised to the power of $argv[2]=$result" 10) Write an interactive shell program for copying, removing, renaming & linking. Ans) #!/bin/csh echo "MENU" echo "1.FILE COPYING" echo "2.FILE RENAMING" echo "3.FILE REMOVING" echo "4.FILE LINKING" echo "ENTER YOUR CHOICE" set choice = $< switch ($choice) case 1: echo "enter the source file name" set source = $< echo "enter the target file name" set target = $< if( -f $source ) then cp $source $target echo "file copied successfully" else echo "source file doesnot exist" endif breaksw case 2: echo "enter the source file to rename" set source = $< echo "enter the new name for the source file" set target = $< mv $source $target echo "file renamed succeessfully" breaksw case 3: echo "enter the source file to remove" set source = $< rm $source echo "file removed successfully" breaksw case 4: echo "enter the source file to provide link" set source = $< echo "enter the link name for the source file" set target = $< link $source $target echo "file linked successfully" breaksw echo "file linked succeessfully" breaksw deefault: echo " you entered wrong choice" endsw 11) Write a shell script that takes a login name as command line argument and

Send SMS to 567678 as JOIN MRITSCSE if you are II CSE student to get regular college updates Send SMS to 567678 as JOIN MRITSIT if you are II IT student to get regular college updates

3

UNIX & SHELL PROGRAMMING LAB MANUAL FOR II YEAR CSE-A & IT-B Repots when that person logs in. Ans) #!/bin/csh echo "the user $argv[1] is logged on to the sytem on" who|grep "$argv[1]"| cut -c22-38 12) Write a shell script which receives two file names as arguments. It should check Whether the two file contents are same or not. If they are same then second file Deleted. Ans) #!/bin/ksh if(cmp $1 $2) then print "the two files are identical" rm $2 print "Now $2 is deleted" else print "the two files are different" fi 13) Write a shell script that displays a list of all the files in the current Directory to which the user hads reead, write and execute permissions. Ans) #!/bin/csh ls -l|grep '^.rwx' 14) Write a shell script to perform the following string operations i) To extract a substring from a given string ii) To find the length of a given string Ans) #!/bin/ksh print "MENU" print "1.TO EXTRACT A SUBSTRING FROM AGIVEN STRING" print "2.TO FIND THE LENGTH OF THE STRING" print "ENTER YOUR CHOICE" read choice print "enter a string" read string case $choice in 1) print "enter position1" read pos1 print "enter position2" read pos2 print "the extracted substring from $pos1 to $pos2 of $string is" print $string|cut -c$pos1-$pos2;; 2) print the length of the string $string is c=$(print $string|wc -c) ((ch=c-1)) print $ch number of characters;; *) print " wrong choice ";; esac Prepared by L Ram Kumar For soft copy of all the programs and also for the lab manual soft copy visit www.mritsunix.co.nr To send your feedback Email: [email protected] Keep on visiting www.mrits.co.nr TecnoconnecT website where SOLUTION IS EVERYTHING Now New websites are started for II year CSE-A, CSE-B, ECE-A and IT-B students CSE-A Website www.mritscsea.co.nr IT-B website www.mritsitb.co.nr ECE-A website www.mritsecea.co.nr CSE-B website www.mritscseb.co.nr --Issued By TechnoconnecT Team

Send SMS to 567678 as JOIN MRITSCSE if you are II CSE student to get regular college updates Send SMS to 567678 as JOIN MRITSIT if you are II IT student to get regular college updates

4

Related Documents