私はすべてのサーバーに使用する標準的なバナーを持っていますが、通常は手動で入力していますが、サーバーの数が増えているので、これを自動化するときです。固定幅の文字列にテキスト行をどのように配置するには?
一般的に、私のバナーは次のようになります。
*****************************************************************
* .:Welcome to hostname.internal.mynet.net:. *
* *
* This is a private server maintained by and exclusively for *
* use by me. No authorization is given or granted to any party *
* unless explicit permission is given. Attempts to circumvent, *
* disable, or otherwise interfere with normal operation will be *
* prosecuted to the fullest extent of applicable laws. *
* *
* UNAUTHORIZED ACCESS PROHIBITED *
*****************************************************************
これは、所望の効果ですが、私のホスト名は、さまざまな文字であるので、時々、例えば、正しくフォーマットしません:
*****************************************************************
* .:Welcome to somelongrandomhostname.internal.mynet.net:. *
* *
* This is a private server maintained by and exclusively for *
* use by me. No authorization is given or granted to any party *
* unless explicit permission is given. Attempts to circumvent, *
* disable, or otherwise interfere with normal operation will be *
* prosecuted to the fullest extent of applicable laws. *
* *
* UNAUTHORIZED ACCESS PROHIBITED *
*****************************************************************
と短いホスト名の場合:
*****************************************************************
* .:Welcome to abc.internal.mynet.net:. *
* *
* This is a private server maintained by and exclusively for *
* use by me. No authorization is given or granted to any party *
* unless explicit permission is given. Attempts to circumvent, *
* disable, or otherwise interfere with normal operation will be *
* prosecuted to the fullest extent of applicable laws. *
* *
* UNAUTHORIZED ACCESS PROHIBITED *
*****************************************************************
私は私のスクリプトで使用し、関連するコード生成するには、このです:私は、またはホスト名の長さにかかわらず、最初の例で提供される正確バナーを生成するための最良のツールとして何を使用するかどうかはわかりません
# banner
echo "
*****************************************************************
* .:Welcome to $hostname.internal.mynet.net:. *
* *
* This is a private server maintained by and exclusively for *
* use by me. No authorization is given or granted to any party *
* unless explicit permission is given. Attempts to circumvent, *
* disable, or otherwise interfere with normal operation will be *
* prosecuted to the fullest extent of applicable laws. *
* *
* UNAUTHORIZED ACCESS PROHIBITED *
***************************************************************** " > banner
?アイデアを探して、 "フレーム"(アスタリスク文字で示される)は固定値でなければなりません。あなたはこのスニペットのパラメータで遊ぶことができます
'$ {#hostname}'で始まるスペースの量を計算できます。 –