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 |
What is bash eval?
How do we create command aliases in a shell?
What are the different shells available?
What is sh in shell script?
how to find weblogic version through linux cammand
Explain about non-login shell files?
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); }
Can you write a script to portray how set –x works?
How many fields are present in a crontab file and what does each field specify?
Where is bash history?
How does shell scripting work?
What is the use of "shift" command in passing parameters?