Por que o comando more não funciona quando ligado a um atalho de teclado?

1

Eu tenho dois comandos que funcionam no terminal:

notify-send "$(more /home/tim/autest.sh | head -1)"

e

notify-send "$(cat /home/tim/autest.sh | head -1)"

colocando-os em um script como este:

#! /bin/bash

notify-send "$(more /home/tim/autest.sh | head -1)"

notify-send "$(cat /home/tim/autest.sh | head -1)"

ainda dá duas saídas, mas apenas uma é a saída correta:

Mais:

Cat:

Quando eu corro do terminal, ambos mostram a saída correta. Por que é isso? Por que mais não dá a saída correta quando acionado a partir de um atalho de teclado?

Observe que isso não é um problema com notify-send , ele faz o mesmo ao ecoar em um arquivo de log:

#! /bin/bash

echo $(more /home/tim/autest.sh | head -1) > log1.txt

echo $(cat /home/tim/autest.sh | head -1) > log2.txt

Log1:

::::::::::::::

Log2:

#! /bin/bash
    
por Tim 23.04.2015 / 21:43

1 resposta

3

Use este comando:

notify-send "$(more /home/tim/autest.sh | head -4 | tail -1)"

Quando você usa seu script com um atalho, more informa:

::::::::::::::
/home/tim/autest.sh
::::::::::::::
#! /bin/bash

Aqui está um trecho do código-fonte de more.c

while (fnum < nfiles) {
  if ((f = checkf (fnames[fnum], &clearit)) != NULL) {
      context.line = context.chrctr = 0;
      Currline = 0;
      if (firstf) sigsetjmp (restore, 1);
      if (firstf) {
        firstf = 0;
        if (srchopt) {
            search (initbuf, f, 1);
            if (noscroll)
              left--;
        }
        else if (initopt)
            skiplns (initline, f);
      }
      else if (fnum < nfiles && !no_tty) {
        sigsetjmp (restore, 1);
        left = command (fnames[fnum], f);
      }
      if (left != 0) {
        if ((noscroll || clearit) && (file_size != LONG_MAX)) {
            if (clreol)
              home ();
            else
              doclear ();
        }
        if (prnames) {
            if (bad_so)
              erasep (0);
            if (clreol)
              cleareol ();
            putsout("::::::::::::::");
            if (promptlen > 14)
              erasep (14);
            putchar('\n');
            if(clreol) cleareol();
            puts(fnames[fnum]);
            if(clreol) cleareol();
            puts("::::::::::::::");
            if (left > Lpp - 4)
              left = Lpp - 4;
        }
        if (no_tty)
            copy_file (f);
        else {
            within++;
            screen(f, left);
            within = 0;
        }
      }
      sigsetjmp (restore, 1);
      fflush(stdout);
      fclose(f);
      screen_start.line = screen_start.chrctr = 0L;
      context.line = context.chrctr = 0L;
  }
  fnum++;
  firstf = 0;
}
    
por A.B. 24.04.2015 / 14:31