How do we create command aliases in a shell?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Shell Script Interview Questions

what does "kill -9" and "kill -1" do

2 Answers   Amazon,


How do you read arguments in a shell program - $1, $2 ..?

4 Answers  


What is sh in shell script?

0 Answers  


What is egrep?

2 Answers  


Write a shell script that adds two numbers if provided as the command line argument and if the two numbers are not entered throws an error message.

0 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); }

0 Answers   Wipro,


Dear All, Can anybody tell me how to predefind no. of selected rows from a text file.

1 Answers   MGL,


How to check if a directory exists?

0 Answers  


What is the first line in every perl script called?

0 Answers  


Write a script to print the first 10 elements of fibonacci series.

0 Answers  


what are command line arguments? what is the need of those?

1 Answers   Flipkart,


Rewrite the command to print the sentence and convert the variable to plural: echo “i like $variable”.

0 Answers  


Categories