Skip to content

Instantly share code, notes, and snippets.

#Dodanie użytkowników
```#!/bin/bash
while read konto;
do
n=$(echo $konto | cut -d : -f 1)
l=$(echo $konto | cut -d : -f 2)
p=$(echo $konto | cut -d : -f 3)
adduser $l --disabled-password --gecos ""
chfn -f "$n" $l