How can I open an app using Terminal?What is the difference between “activate” and “launch”?Automatically quit Terminal when typing exitAppleScript choose file dialog box with default location not workingAutomator task to open screenshots in Preview automaticallyHow can I run a shell script that prompts for user input from within ApplescriptUsing Applescript in Automator app to run ffmpegChanging a startup disk using AppleScriptHow do I search the contents of all my Terminal windowsHow to remove the 10-minute delay for a scheduled Shut Down?Pass a variable from bash shell into Applescript?Prevent Terminal from overwriting preferences on exit

Why is the Digital 0 not 0V in computer systems?

2000s space film where an alien species has almost wiped out the human race in a war

Consonance v. Dissonance

Can derivatives be defined as anti-integrals?

Usage of blank space in trade banner and text-positioning

What do the French say for “Oh, you shouldn’t have”?

Is "you will become a subject matter expert" code for "you'll be working on your own 100% of the time"?

Does a succubus' charm end when it dies?

Where is it? - The Google Earth Challenge Ep. 2

Fasteners for securing cabinets together

How to publish superseding results without creating enemies

Ambiguity in notation resolved by +

Is there any reason to concentrate on the Thunderous Smite spell after using its effects?

What 68-pin connector is this on my 2.5" solid state drive?

How do certain apps show new notifications when internet access is restricted to them?

Why don't Wizards use wrist straps to protect against disarming charms?

How are aircraft depainted?

How would you control supersoldiers in a late iron-age society?

Reading double values from a text file

What is a "major country" as named in Bernie Sanders' Healthcare debate answers?

What was the motivation for the invention of electric pianos?

How do I create indestructible terrain?

geschafft or geschaffen? which one is past participle of schaffen?

What are examples of experiments or studies where pre-registration would not be feasible?



How can I open an app using Terminal?


What is the difference between “activate” and “launch”?Automatically quit Terminal when typing exitAppleScript choose file dialog box with default location not workingAutomator task to open screenshots in Preview automaticallyHow can I run a shell script that prompts for user input from within ApplescriptUsing Applescript in Automator app to run ffmpegChanging a startup disk using AppleScriptHow do I search the contents of all my Terminal windowsHow to remove the 10-minute delay for a scheduled Shut Down?Pass a variable from bash shell into Applescript?Prevent Terminal from overwriting preferences on exit






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








6















I want to be able to open any given app from the terminal, now I have tried



osascript -e 'open app "Calendar"'



I have tried for Mail, Calendar and Slack.. Slack acctually opens but it does generate a error msg in terminal.. The two others generates errors and doesn't open. The errors are Execution errors.



Now I tried with AppleScript, is bash better?



How can this be done?










share|improve this question
























  • You mean open an app using Terminal using AppleScript/JavaScript? Kindly edit the question to clarify. Else you can use open -a "app_name.app" to open any app using Terminal.

    – Nimesh Neema
    Mar 28 at 9:27

















6















I want to be able to open any given app from the terminal, now I have tried



osascript -e 'open app "Calendar"'



I have tried for Mail, Calendar and Slack.. Slack acctually opens but it does generate a error msg in terminal.. The two others generates errors and doesn't open. The errors are Execution errors.



Now I tried with AppleScript, is bash better?



How can this be done?










share|improve this question
























  • You mean open an app using Terminal using AppleScript/JavaScript? Kindly edit the question to clarify. Else you can use open -a "app_name.app" to open any app using Terminal.

    – Nimesh Neema
    Mar 28 at 9:27













6












6








6


1






I want to be able to open any given app from the terminal, now I have tried



osascript -e 'open app "Calendar"'



I have tried for Mail, Calendar and Slack.. Slack acctually opens but it does generate a error msg in terminal.. The two others generates errors and doesn't open. The errors are Execution errors.



Now I tried with AppleScript, is bash better?



How can this be done?










share|improve this question














I want to be able to open any given app from the terminal, now I have tried



osascript -e 'open app "Calendar"'



I have tried for Mail, Calendar and Slack.. Slack acctually opens but it does generate a error msg in terminal.. The two others generates errors and doesn't open. The errors are Execution errors.



Now I tried with AppleScript, is bash better?



How can this be done?







terminal mac applescript






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 28 at 9:19









BrainmaniacBrainmaniac

3582 silver badges10 bronze badges




3582 silver badges10 bronze badges















  • You mean open an app using Terminal using AppleScript/JavaScript? Kindly edit the question to clarify. Else you can use open -a "app_name.app" to open any app using Terminal.

    – Nimesh Neema
    Mar 28 at 9:27

















  • You mean open an app using Terminal using AppleScript/JavaScript? Kindly edit the question to clarify. Else you can use open -a "app_name.app" to open any app using Terminal.

    – Nimesh Neema
    Mar 28 at 9:27
















You mean open an app using Terminal using AppleScript/JavaScript? Kindly edit the question to clarify. Else you can use open -a "app_name.app" to open any app using Terminal.

– Nimesh Neema
Mar 28 at 9:27





You mean open an app using Terminal using AppleScript/JavaScript? Kindly edit the question to clarify. Else you can use open -a "app_name.app" to open any app using Terminal.

– Nimesh Neema
Mar 28 at 9:27










2 Answers
2






active

oldest

votes


















16
















You can use open’s -a option:



open -a Mail


You can specify the application path instead:



open /Applications/Mail.app


If you want to use AppleScript (osascript from command line), open app isn't quite equivalent. Instead, you can either use



osascript -e 'tell application "Mail" to activate'


or



osascript -e 'tell application "Mail" to launch'


You can see this question for the difference between the two.






share|improve this answer


































    3
















    Just as #grg said, you can use open -a ApplicationName



    Example
    open -a Calendar



    There are a number of options that can be used with the opencommand.



    To see all of them, type on the terminal



    man open



    Here is a list of possible options for the open command.



    $ open
    Usage: open [-e] [-t] [-f] [-W] [-R] [-n] [-g] [-h] [-b ] [-a ] [filenames] [--args arguments]
    Help: Open opens files from a shell.
    By default, opens each file using the default application for that file.
    If the file is in the form of a URL, the file will be opened as a URL.
    Options:
    -a Opens with the specified application.
    -b Opens with the specified application bundle identifier.
    -e Opens with TextEdit.
    -t Opens with default text editor.
    -f Reads input from standard input and opens with TextEdit.
    -F --fresh Launches the app fresh, that is, without restoring windows. Saved persistent state is lost, excluding Untitled documents.
    -R, --reveal Selects in the Finder instead of opening.
    -W, --wait-apps Blocks until the used applications are closed (even if they were already running).
    --args All remaining arguments are passed in argv to the application main() function instead of opened.
    -n, --new Open a new instance of the application even if one is already running.
    -j, --hide Launches the app hidden.
    -g, --background Does not bring the application to the foreground.
    -h, --header Searches header file locations for headers matching the given filenames, and opens them.





    share|improve this answer




















    • 2





      This should be an edit to the other answer

      – Mark
      Mar 28 at 14:00




















    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    16
















    You can use open’s -a option:



    open -a Mail


    You can specify the application path instead:



    open /Applications/Mail.app


    If you want to use AppleScript (osascript from command line), open app isn't quite equivalent. Instead, you can either use



    osascript -e 'tell application "Mail" to activate'


    or



    osascript -e 'tell application "Mail" to launch'


    You can see this question for the difference between the two.






    share|improve this answer































      16
















      You can use open’s -a option:



      open -a Mail


      You can specify the application path instead:



      open /Applications/Mail.app


      If you want to use AppleScript (osascript from command line), open app isn't quite equivalent. Instead, you can either use



      osascript -e 'tell application "Mail" to activate'


      or



      osascript -e 'tell application "Mail" to launch'


      You can see this question for the difference between the two.






      share|improve this answer





























        16














        16










        16









        You can use open’s -a option:



        open -a Mail


        You can specify the application path instead:



        open /Applications/Mail.app


        If you want to use AppleScript (osascript from command line), open app isn't quite equivalent. Instead, you can either use



        osascript -e 'tell application "Mail" to activate'


        or



        osascript -e 'tell application "Mail" to launch'


        You can see this question for the difference between the two.






        share|improve this answer















        You can use open’s -a option:



        open -a Mail


        You can specify the application path instead:



        open /Applications/Mail.app


        If you want to use AppleScript (osascript from command line), open app isn't quite equivalent. Instead, you can either use



        osascript -e 'tell application "Mail" to activate'


        or



        osascript -e 'tell application "Mail" to launch'


        You can see this question for the difference between the two.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 28 at 14:07









        Darrick Herwehe

        1054 bronze badges




        1054 bronze badges










        answered Mar 28 at 9:32









        grggrg

        145k25 gold badges230 silver badges341 bronze badges




        145k25 gold badges230 silver badges341 bronze badges


























            3
















            Just as #grg said, you can use open -a ApplicationName



            Example
            open -a Calendar



            There are a number of options that can be used with the opencommand.



            To see all of them, type on the terminal



            man open



            Here is a list of possible options for the open command.



            $ open
            Usage: open [-e] [-t] [-f] [-W] [-R] [-n] [-g] [-h] [-b ] [-a ] [filenames] [--args arguments]
            Help: Open opens files from a shell.
            By default, opens each file using the default application for that file.
            If the file is in the form of a URL, the file will be opened as a URL.
            Options:
            -a Opens with the specified application.
            -b Opens with the specified application bundle identifier.
            -e Opens with TextEdit.
            -t Opens with default text editor.
            -f Reads input from standard input and opens with TextEdit.
            -F --fresh Launches the app fresh, that is, without restoring windows. Saved persistent state is lost, excluding Untitled documents.
            -R, --reveal Selects in the Finder instead of opening.
            -W, --wait-apps Blocks until the used applications are closed (even if they were already running).
            --args All remaining arguments are passed in argv to the application main() function instead of opened.
            -n, --new Open a new instance of the application even if one is already running.
            -j, --hide Launches the app hidden.
            -g, --background Does not bring the application to the foreground.
            -h, --header Searches header file locations for headers matching the given filenames, and opens them.





            share|improve this answer




















            • 2





              This should be an edit to the other answer

              – Mark
              Mar 28 at 14:00















            3
















            Just as #grg said, you can use open -a ApplicationName



            Example
            open -a Calendar



            There are a number of options that can be used with the opencommand.



            To see all of them, type on the terminal



            man open



            Here is a list of possible options for the open command.



            $ open
            Usage: open [-e] [-t] [-f] [-W] [-R] [-n] [-g] [-h] [-b ] [-a ] [filenames] [--args arguments]
            Help: Open opens files from a shell.
            By default, opens each file using the default application for that file.
            If the file is in the form of a URL, the file will be opened as a URL.
            Options:
            -a Opens with the specified application.
            -b Opens with the specified application bundle identifier.
            -e Opens with TextEdit.
            -t Opens with default text editor.
            -f Reads input from standard input and opens with TextEdit.
            -F --fresh Launches the app fresh, that is, without restoring windows. Saved persistent state is lost, excluding Untitled documents.
            -R, --reveal Selects in the Finder instead of opening.
            -W, --wait-apps Blocks until the used applications are closed (even if they were already running).
            --args All remaining arguments are passed in argv to the application main() function instead of opened.
            -n, --new Open a new instance of the application even if one is already running.
            -j, --hide Launches the app hidden.
            -g, --background Does not bring the application to the foreground.
            -h, --header Searches header file locations for headers matching the given filenames, and opens them.





            share|improve this answer




















            • 2





              This should be an edit to the other answer

              – Mark
              Mar 28 at 14:00













            3














            3










            3









            Just as #grg said, you can use open -a ApplicationName



            Example
            open -a Calendar



            There are a number of options that can be used with the opencommand.



            To see all of them, type on the terminal



            man open



            Here is a list of possible options for the open command.



            $ open
            Usage: open [-e] [-t] [-f] [-W] [-R] [-n] [-g] [-h] [-b ] [-a ] [filenames] [--args arguments]
            Help: Open opens files from a shell.
            By default, opens each file using the default application for that file.
            If the file is in the form of a URL, the file will be opened as a URL.
            Options:
            -a Opens with the specified application.
            -b Opens with the specified application bundle identifier.
            -e Opens with TextEdit.
            -t Opens with default text editor.
            -f Reads input from standard input and opens with TextEdit.
            -F --fresh Launches the app fresh, that is, without restoring windows. Saved persistent state is lost, excluding Untitled documents.
            -R, --reveal Selects in the Finder instead of opening.
            -W, --wait-apps Blocks until the used applications are closed (even if they were already running).
            --args All remaining arguments are passed in argv to the application main() function instead of opened.
            -n, --new Open a new instance of the application even if one is already running.
            -j, --hide Launches the app hidden.
            -g, --background Does not bring the application to the foreground.
            -h, --header Searches header file locations for headers matching the given filenames, and opens them.





            share|improve this answer













            Just as #grg said, you can use open -a ApplicationName



            Example
            open -a Calendar



            There are a number of options that can be used with the opencommand.



            To see all of them, type on the terminal



            man open



            Here is a list of possible options for the open command.



            $ open
            Usage: open [-e] [-t] [-f] [-W] [-R] [-n] [-g] [-h] [-b ] [-a ] [filenames] [--args arguments]
            Help: Open opens files from a shell.
            By default, opens each file using the default application for that file.
            If the file is in the form of a URL, the file will be opened as a URL.
            Options:
            -a Opens with the specified application.
            -b Opens with the specified application bundle identifier.
            -e Opens with TextEdit.
            -t Opens with default text editor.
            -f Reads input from standard input and opens with TextEdit.
            -F --fresh Launches the app fresh, that is, without restoring windows. Saved persistent state is lost, excluding Untitled documents.
            -R, --reveal Selects in the Finder instead of opening.
            -W, --wait-apps Blocks until the used applications are closed (even if they were already running).
            --args All remaining arguments are passed in argv to the application main() function instead of opened.
            -n, --new Open a new instance of the application even if one is already running.
            -j, --hide Launches the app hidden.
            -g, --background Does not bring the application to the foreground.
            -h, --header Searches header file locations for headers matching the given filenames, and opens them.






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Mar 28 at 13:32









            TCHEUTCHOUA SALDEU STEVE LIONETCHEUTCHOUA SALDEU STEVE LIONE

            312 bronze badges




            312 bronze badges










            • 2





              This should be an edit to the other answer

              – Mark
              Mar 28 at 14:00












            • 2





              This should be an edit to the other answer

              – Mark
              Mar 28 at 14:00







            2




            2





            This should be an edit to the other answer

            – Mark
            Mar 28 at 14:00





            This should be an edit to the other answer

            – Mark
            Mar 28 at 14:00



            Popular posts from this blog

            Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

            Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

            Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript