HOW TO CREATE 10 USERS IN UNIX(HP-UX) USING SHELL
SHELL SCRIPT?
Answer Posted / pitambar mishra
My dear friends,
you have used 'useradd' command in the script through which we can only add the user name. But for adding password you should use 'passwd' command because password is also mandatory.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the equivalent of a file shortcut that we have a window on a linux system?
How to calculate the number of passed arguments?
What does the sh command do?
Why are there shells on the beach?
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); }
What is the crontab?
What is basename in shell script?
How will you copy a file from one machine to other?
Give some situations where typing error can destroy a program?
Explain about gui scripting?
What is console line?
What is the difference between scripting and coding?
How to print the first array element?
c program to display the information of given file similar to givan by the unix or linux command ls -l
how to get part of string variable with echo command only?