画面の中央にコードの出力を印刷する


10

以下のコードfileは、画面にワード単位で何でも出力します。例えば:

Hello が1秒間表示されて消えます。次に、文の次の単語が1秒間表示されて消えます。

画面中央に表示されているものを出力するにはどうすればよいですか?

awk '{i=1; while(i<=NF){ print $((i++)); system("sleep 1; clear") }}' file

正確に何を達成しようとしているのですか?
muru

このコマンドは、画面の左上隅にファイルから各単語を表示します。画面の中央で出力を行う方法を知る必要があります。
Nebelz Cheez 2015

4
はい、でも何を達成しようとしていますか?以下のようなこの音XYの問題
muru

「画面の真ん中」とは何ですか?端末の真ん中?実際の画面の真ん中?端末のサイズを変更した場合、端末のサイズに関係なく動的にテキストを中央に配置するためにこれが必要ですか?
terdon 2015年

はい。ターミナルの真ん中。
Nebelz Cheez 2015

回答:


7

これは非常に堅牢なbashスクリプトです。

#!/bin/bash

## When the program is interrupted, call the cleanup function
trap "cleanup; exit" SIGHUP SIGINT SIGTERM

## Check if file exists
[ -f "$1" ] || { echo "File not found!"; exit; }

function cleanup() {
    ## Restores the screen content
    tput rmcup

    ## Makes the cursor visible again
    tput cvvis
}

## Saves the screen contents
tput smcup

## Loop over all words
while read line
do
    ## Gets terminal width and height
    height=$(tput lines)
    width=$(tput cols)

    ## Gets the length of the current word
    line_length=${#line}

    ## Clears the screen
    clear

    ## Puts the cursor on the middle of the terminal (a bit more to the left, to center the word)
    tput cup "$((height/2))" "$((($width-$line_length)/2))"

    ## Hides the cursor
    tput civis

    ## Prints the word
    printf "$line"

    ## Sleeps one second
    sleep 1

## Passes the words separated by a newline to the loop
done < <(tr ' ' '\n' < "$1")

## When the program ends, call the cleanup function
cleanup

8

以下のスクリプトを試してください。入力ワードごとに端末のサイズを検出するため、実行中に端末のサイズを変更しても動的に更新されます。

#!/usr/bin/env bash

## Change the input file to have one word per line
tr ' ' '\n' < "$1" | 
## Read each word
while read word
do
    ## Get the terminal's dimensions
    height=$(tput lines)
    width=$(tput cols)
    ## Clear the terminal
    clear

    ## Set the cursor to the middle of the terminal
    tput cup "$((height/2))" "$((width/2))"

    ## Print the word. I add a newline just to avoid the blinking cursor
    printf "%s\n" "$word"
    sleep 1
done 

それをとして保存し~/bin/foo.sh、実行可能(chmod a+x ~/bin/foo.sh)にして、最初の引数として入力ファイルを指定します。

foo.sh file

3

同じことを行うbash関数

mpt() { 
   clear ; 
   w=$(( `tput cols ` / 2 ));  
   h=$(( `tput lines` / 2 )); 
   tput cup $h;
   printf "%${w}s \n"  "$1"; tput cup $h;
   sleep 1;
   clear;  
}

その後

mpt "Text to show"

1
これは私の答えとまったく同じように見えますが、OPの要求に応じて、ファイルから個別に読み取られた文のすべての単語が示されるわけではありません。
terdon 2015年

1

@Helioのbashソリューションに似たPythonスクリプトを次に示します

#!/usr/bin/env python
import fileinput
import signal
import sys
import time
from blessings import Terminal # $ pip install blessings

def signal_handler(*args):
    raise SystemExit

for signal_name in "SIGHUP SIGINT SIGTERM".split():
    signal.signal(getattr(signal, signal_name), signal_handler)

term = Terminal()
with term.hidden_cursor(), term.fullscreen():
    for line in fileinput.input(): # read from files on the command-line and/or stdin
        for word in line.split(): # whitespace-separated words
            # use up to date width/height (SIGWINCH support)
            with term.location((term.width - len(word)) // 2, term.height // 2):
                print(term.bold_white_on_black(word))
                time.sleep(1)
                print(term.clear)
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.