What is the difference between Shell Programming and Shell
scripting?

Answer Posted / rahul

It's not shell programming, it's shell scripting. A collection of commands to execute written in shell-scripting. So that we don't need to memorize the no. of commands. These scripts can work automatically. 
where shell works as an interpreter in Unix system

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does find command return in unix?

597


What is the use of find command in unix?

588


Why is awk called awk?

581


What do chgrp command do?

592


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include # include int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

1764






What is the nmap command?

585


Describe the usage and functionality of the command rm –r * in unix?

827


What is “chmod” command?

567


Does cp command overwrite files?

626


Write a command that will allow a unix system to shut down in 15 minutes, after which it will perform a reboot.

628


What is the comma to display different lines that are found when compare two files?

595


What does #!/ Bin sh do?

595


What are file commands?

656


Which command is used to copy files?

557


What does the command ' $who | sort –logfile > newfile' do?

772