Results 1 to 1 of 1

Thread: [Bash] Return to Prompt After Executing GUI

  1. #1
    Join Date
    May 2008
    Beans
    1,029

    Question [Bash] Return to Prompt After Executing GUI

    I have a bash script that launches a GUI, but when I execute it from a terminal I have to wait until the GUI closes to get back to the prompt. How can I tell the script to finish executing after I launch the GUI? I know that Firefox does this. Windows does this with the start command.

    --- EDIT ---
    Never mind, just found the answer here: http://ubuntuforums.org/showthread.p...pt#post4329301

    Code:
    #! /bin/bash
    
    /program/to/execute &
    Last edited by dodle; November 26th, 2011 at 12:59 AM.

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •