GNU画面:指定されたタイトルで新しいウィンドウを作成する

GNU画面:指定されたタイトルで新しいウィンドウを作成する

GNU画面で新しいウィンドウを作成し、ウィンドウ自体を作成するときにタイトルを指定する方法はありますか?

新しいウィンドウを作成してからそれを使用してタイトルを設定できることを知っていますが、^A Aウィンドウ自体を作成するときに傾きを言及する方法はありますか?

ベストアンサー1

短い答え:

^A : screen -t title command

^A:画面プロンプトが表示されたら、残りの行は「title」というタイトルのウィンドウを作成し、「command」コマンドを実行するコマンドです。

以下は、マンページのscreenサブコマンドのマニュアルですscreen(1)

   screen [-opts] [n] [cmd [args]|//group]

   Establish  a  new  window.  The flow-control options (-f, -fn and -fa),
   title (a.k.a.) option (-t), login options (-l and -ln) , terminal  type
   option  (-T <term>), the all-capability-flag (-a) and scrollback option
   (-h <num>) may be specified with each command.  The option  (-M)  turns
   monitoring on for this window.  The option (-L) turns output logging on
   for this window.  If an optional number n in the range  0..MAXWIN-1  is
   given, the window number n is assigned to the newly created window (or,
   if this number is already in-use, the next  available  number).   If  a
   command is specified after "screen", this command (with the given argu‐
   ments) is started in the window; otherwise, a  shell  is  created.   If
   //group  is supplied, a container-type window is created in which other
   windows may be created inside it.

   Thus, if your ".screenrc" contains the lines

               # example for .screenrc:
               screen 1
               screen -fn -t foobar -L 2 telnet foobar

   screen creates a shell window (in window #1) and a window with a TELNET
   connection  to the machine foobar (with no flow-control using the title
   "foobar" in window #2) and will write a logfile ("screenlog.2") of  the
   telnet session.  Note, that unlike previous versions of screen no addi‐
   tional default window is created when "screen" commands are included in
   your  ".screenrc"  file.  When  the initialization is completed, screen
   switches to the last window specified in your  .screenrc  file  or,  if
   none, opens a default window #0.
   Screen  has built in some functionality of "cu" and "telnet".  See also
   chapter "WINDOW TYPES".

おすすめ記事