What language is used in terminal?



What language is used in terminal?..

Answer / Suresh Kumar Yadav

The command line interface (CLI) or terminal primarily uses the shell scripting language, such as Bash, Zsh, or Tcsh. These languages are based on Unix Shell and provide a way to interact with the operating system.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Shell Script Interview Questions

What is bash eval?

1 Answers  


How do we create command aliases in a shell?

1 Answers  


What are the different shells available?

3 Answers  


What is sh in shell script?

1 Answers  


how to find weblogic version through linux cammand

1 Answers   L&T,


Explain about non-login shell files?

1 Answers  


How to replace following lines, catch (DAOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } catch (BOException e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw e; } catch (Exception e) { objLogger.error(this.getClass () + "addUpdateIssues() " + e); throw new BOException(5122); } Needs to be changed in to, catch (DAOException e) { AppException.handleException (null, null, e, null, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); } catch (BOException e) { AppException.handleException (null, null, null, e, null, null, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 0); } catch (Exception e) { AppException.handleException (null, null, null, null, null, e, "BOException", this.getClass() + "addUpdateIssues() ", null, null, null, null, null, null, null, null, 5122); }

1 Answers   Wipro,


Can you write a script to portray how set –x works?

1 Answers  


How many fields are present in a crontab file and what does each field specify?

1 Answers  


Where is bash history?

1 Answers  


How does shell scripting work?

1 Answers  


What is the use of "shift" command in passing parameters?

1 Answers  


Categories