Announcement

Collapse
No announcement yet.

I/O Redirection

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    I/O Redirection

    Dear Friends


    if any body know please tell me how can redirect an output of a command to a application

    like

    echo " hello world " | kate
    but it does not work
    I want that what ever output come from my command should be appear in a text editor like Kate etc.

    or any another IDea please share

    thanks

    #2
    You could pipe the output of your command to a text file, then afterwards open that file with Kate.

    echo " hello world " > tempfile.txt && kate tempfile.txt
    sigpic
    "Let us think the unthinkable, let us do the undoable, let us prepare to grapple with the ineffable itself, and see if we may not eff it after all."
    -- Douglas Adams

    Comment


      #3
      With kate, you can also use the '-i' option:
      Code:
      echo " hello world " |  kate -i

      Comment

      Working...
      X