Search results

  1. I

    Zenity - Create new user and password creator

    try something like this : #!/bin/bash zenity --password > test cat test >> test1 cat test >> test1 useradd -m liveuser passwd liveuser < test1 rm test test1 su liveuser exit then give x permission for the created file and then execute
Top