Imprime a saída do código no meio da tela

10

O código abaixo gerará o que for em file palavra por palavra na tela. Por exemplo:

Hello será exibido por 1 segundo e desaparecerá. Então, a próxima palavra na frase aparecerá por um segundo e desaparecerá e assim por diante.

Como faço para mostrar o que está sendo exibido no meio da tela?

awk '{i=1; while(i<=NF){ print $((i++)); system("sleep 1; clear") }}' file
    
por Nebelz Cheez 21.03.2015 / 19:27

4 respostas

7

Aqui você é um script muito robusto para fazer isso:

#!/bin/bash

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

## Check if file exists
[ -f "" ] || { 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' < "")

## When the program ends, call the cleanup function
cleanup
    
por Helio 21.03.2015 / 21:00
8

Experimente o script abaixo. Ele detectará o tamanho do terminal para cada palavra de entrada e, portanto, será atualizado dinamicamente se você redimensionar o terminal enquanto ele estiver em execução.

 
#!/usr/bin/env bash

## Change the input file to have one word per line
tr ' ' '\n' < "" | 
## 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 

Salve como ~/bin/foo.sh , torne-o executável ( chmod a+x ~/bin/foo.sh ) e dê a ele seu arquivo de entrada como seu primeiro argumento:

foo.sh file
    
por terdon 21.03.2015 / 19:56
3

função bash para fazer o mesmo

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

e depois

mpt "Text to show"
    
por Ratnakar Pawar 21.03.2015 / 20:40
0

Aqui está o script Python que é semelhante a @ bash solution do Helio :

#!/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)
    
por jfs 24.03.2015 / 23:59