它可以在centos中执行。
pd="xxxx"
user="yyyy"
echo "$pd" |passwd --stdin $user
已验证无法在debian中执行echo "$pd" |passwd --stdin $user
。
echo "$pd" |passwd --stdin $user
unrecognized option '--stdin' #in debian when executing
echo "$pd" |passwd $user
Enter new UNIX password: Retype new UNIX password: passwd: Authentication token manipulation error
passwd: password unchanged #in debian when executing
如何使其在debian中运行,还是在centos中与echo "$pd" |passwd --stdin $user
相同?