स्क्रीन के बीच में कोड का प्रिंट आउटपुट


10

नीचे दिया गया कोड fileस्क्रीन पर शब्द द्वारा जो भी शब्द में आउटपुट करेगा । उदाहरण के लिए:

Hello 1 सेकंड के लिए प्रदर्शित किया जाएगा और गायब हो जाएगा। फिर, वाक्य में अगला शब्द एक दूसरे के लिए दिखाई देगा और गायब हो जाएगा और इसी तरह।

स्क्रीन के बीच में जो भी प्रदर्शित हो रहा है, उसे मैं कैसे आउटपुट करूं?

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

ऐसा क्या है जिसे आप प्राप्त करने की कोशिश कर रहे हैं, वास्तव में?
मुरु

वह कमांड प्रत्येक शब्द को स्क्रीन के ऊपरी बाएं कोने में एक फ़ाइल के रूप में प्रदर्शित करता है। मुझे यह जानने की जरूरत है कि स्क्रीन के बीच में आउटपुट कैसे बनाया जाए।
नेबेलज़ शेज़

4
हां, लेकिन आप क्या हासिल करने की कोशिश कर रहे हैं? यह एक XY समस्या की तरह लगता है ,
muru

"स्क्रीन के मध्य" क्या है? एक टर्मिनल के बीच में? वास्तविक स्क्रीन के बीच में? यदि आप टर्मिनल का आकार बदलते हैं, तो क्या आपको अपने टर्मिनल के आकार के बीच में पाठ को गतिशील रूप से रखने की आवश्यकता है?
टेराडॉन

हाँ। टर्मिनल के बीच में।
नेबलेज़ शेज़

जवाबों:


7

यहाँ आप एक बहुत ही मजबूत बैश स्क्रिप्ट हैं:

#!/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
यह बिल्कुल मेरे उत्तर के समान प्रतीत होता है, सिवाय इसके कि यह एक बात को दर्शाता है न कि एक वाक्य के प्रत्येक शब्द को ओपी द्वारा अनुरोधित फ़ाइल से अलग से पढ़ा जाता है।
टेराडॉन

1

यहां पायथन लिपि है जो @ हेलियो के bashसमाधान के समान है :

#!/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)
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.