Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Can a normal user create a user with useradd ???
Name: Vasco_x Date: May 26, 2000 at 08:21:16 Pacific
Comment:
in a HP-UX 9000 A need a script, command or a way to a normal user creat another user with the useradd. Can i say in the script the passwd of root ???? isn't safe but ... thanks, from Lisbon, Portugal
Summary: Hello, I have a script called "change" that lives in the following directory: /home/controlm/measurements/ The /home/controlm dir is the home dir for the controlm user ID. There will be multiple peopl...
Summary: #!/bin/sh display_number() { echo 'Enter number: \c' read number if [ "$number" ] ; then grep "$number" myphonebook fi } echo 'Enter selection: \c' read selection case $selection in 1) echo "u wan ...
Summary: In a ksh script I get a file with a path from another program. I need to create the file and it's directories. I know mkdir -p can make the dirs but how to get the dirs without the filename? TIA Keith...