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.
python セットを使用して、Linux ファイルシステムの /etc/passwd ファイルにリストされているすべての固有のシェルをリストする方法を知る必要があります。これは、コマンド ラインから Python シェルで実行されます。
最も簡単な方法:
import pwd shells = set(p.pw_shell for p in pwd.getpwall()) print('\n'.join(shells))