ターミナルで動作する 2 つのコマンドがあります。
notify-send "$(more /home/tim/autest.sh | head -1)"
そして
notify-send "$(cat /home/tim/autest.sh | head -1)"
次のようなスクリプトに記述します。
#! /bin/bash
notify-send "$(more /home/tim/autest.sh | head -1)"
notify-send "$(cat /home/tim/autest.sh | head -1)"
まだ 2 つの出力が生成されますが、実際に正しい出力は 1 つだけです。
もっと:
猫:
ターミナルから実行すると、両方とも正しい出力が表示されます。これはなぜでしょうか? キーボード ショートカットからトリガーされたときに、more が正しい出力を返さないのはなぜでしょうか?
これは では問題にならないことに注意してください。notify-send
ログ ファイルにエコーする場合も同じことが発生します。
#! /bin/bash
echo $(more /home/tim/autest.sh | head -1) > log1.txt
echo $(cat /home/tim/autest.sh | head -1) > log2.txt
ログ1:
::::::::::::::
ログ2:
#! /bin/bash
答え1
次のコマンドを使用します:
notify-send "$(more /home/tim/autest.sh | head -4 | tail -1)"
スクリプトをショートカットで使用すると、more
次のようになります。
::::::::::::::
/home/tim/autest.sh
::::::::::::::
#! /bin/bash
以下はソースコードからの抜粋です。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;
}