Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、ファイルから chfn を使用して /etc/passwd ファイルを変更するプログラムを作成しています。そこにコマンドchfnを使用してbash file.txtでファイルを実行できますが、file.txtを編集せずに別のユーザーに対して実行できますか? 名前を編集したいユーザーを書くことができるはずです。
dialog --tailbox /etc/passwd 200 200 echo select user chfn what should i do here
コマンドを使用してユーザー入力を読み取ることができますread。
read
dialog --tailbox /etc/passwd 200 200 read -p "select user: " username chfn "$username"