4 lines
141 B
Bash
Executable file
4 lines
141 B
Bash
Executable file
#! /bin/sh
|
|
# change password of user $1 to $2
|
|
# mjt: I don't know python, dunno how to run this construct in python:
|
|
echo "$1:$2" | chpasswd
|