Results 1 to 3 of 3

Thread: a script to automate the addition of users to linux server

  1. #1

    a script to automate the addition of users to linux server

    I am migrating from windows NT and have exported users to an csv file which I want to export to my linux PDC. Any one with that solution. Looking for a script to do this.

  2. #2
    Senior Member
    Join Date
    May 2004
    Location
    Pakistan
    Posts
    253

    Re: a script to automate the addition of users to linux serv

    Dear Emmanuel,
    Hello,

    Quote Originally Posted by Emmanuel
    I am migrating from windows NT and have exported users to an csv file which I want to export to my linux PDC. Any one with that solution. Looking for a script to do this.
    Can you please post here you CSV file so i will figure it out and try to make script for you

    Best Regards.
    Färrükh Ähmëd

  3. #3
    is the csv file a one column list of usernames? if so you probably don't even need a script to do it:

    Code:
    for user in `cat testfile.txt`; do /usr/sbin/useradd $user; done
    or in a script:
    Code:
    #!/bin/bash
    for user in `cat testfile.txt`; do /usr/sbin/useradd $user; done

Similar Threads

  1. How To Make A Dedicated File Server Or Web Server
    By beezlebubsbum in forum Linux - General Topics
    Replies: 11
    Last Post: 02-22-2009, 12:12 AM
  2. Complete Debain Linux Server Setup Tutorial
    By gg234 in forum Linux - General Topics
    Replies: 1
    Last Post: 02-07-2009, 05:22 PM
  3. Live Communications Server 2005 Glossary
    By regix in forum Windows - General Topics
    Replies: 0
    Last Post: 01-01-2005, 08:16 PM
  4. Samba Problem
    By turishi007 in forum Linux - General Topics
    Replies: 2
    Last Post: 10-17-2004, 03:32 AM
  5. Problems sending mail to users on my mail server
    By Ed McCorduck in forum Linux - Software, Applications & Programming
    Replies: 8
    Last Post: 06-23-2004, 10:18 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •