用户名,bash中的密码程序 [英] username, password program in bash

查看:97
本文介绍了用户名,bash中的密码程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个程序,要求用户输入用户名和密码,然后将其存储在文本文件中,第一列是用户名,第二列是密码,我需要一个命令来在用户输入用户名和新密码时替换密码密码,这是我所拥有的

I have a program that asks input from user on their username and password then stores it in a text file column one is usernames and column 2 is passwords, i need a command that replaces the password when the user inputs their username and new password, heres what i have

#!/bin/bash
#admin menu

#Register User
echo enter the username of the user you want to register.
read reguser
echo enter the password of the user you want to register.
read regpass

User_Pass="username_pass.txt"

if [ ! -e "$User_Pass" ]; 
then
echo "Creating Username and Passwords file"
touch $User_Pass
fi

echo "$reguser $regpass" | cat >> $User_Pass

echo user succesfully registered.

#Change Password
echo "Enter the username you want to change the password for"
read change1

change2=$(grep -q $change1 username_pass.txt)

if [ $change2=0 ];
then 
echo enter your new password

read newpass



awk -v newpass="$newpass" -v change1="$change1" '$1 ~ change1 {$2 = newpass}' username_pass.txt
#i tried this but it didnt work


    echo "password changed!"
else
    echo "no such username."
fi

推荐答案

您可以使用

这篇关于用户名,bash中的密码程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆