`su -`と `su --login`の違いは何ですか?

`su -`と `su --login`の違いは何ですか?

~からsu次のマニュアルページ:

For  backward  compatibility, su defaults to not change the current directory
and to only set the environment variables HOME and SHELL (plus USER and LOGNAME
if the target user is not root).  It is recommended to always use the 
--login option (instead of  its  shortcut -) to avoid side effects caused
by mixing environments.

...

-, -l, --login
    Start the shell as a login shell with an environment similar to a real login:

        o      clears all the environment variables except TERM

        o      initializes the environment variables HOME, SHELL, USER, LOGNAME, and PATH

        o      changes to the target user's home directory

        o      sets argv[0] of the shell to '-' in order to make the shell a login shell

-との間に違いがあるか--login(またはそれだけだと言いますか-l)言うのは難しいです。つまり、マニュアルページには「ショートカットではなく -」と記載されていますが、これらのオプションはすべて結合されており、違いの説明は表示されません(存在する場合)。

UPD質問を確認しましたが、そうする必要があります。私の問題を解決してください。問題は基本的にsuとの違いについてですsu -su -の違いについて質問しますsu --login。いいえ、問題はまったく解決されません。

ベストアンサー1

Debian の手動入力がより啓蒙しているようです:

   -, -l, --login
       Provide an environment similar to what the user would expect had the user logged
       in directly.

       When - is used, it must be specified before any username. For portability it is
       recommended to use it as last option, before any username. The other forms (-l
       and --login) do not have this restriction.

おすすめ記事