স্ক্রিনের মাঝখানে কোডের আউটপুট প্রিন্ট করুন


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

একই কাজ বাশ ফাংশন

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)
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.