How to run git bash scripts on windows startupCalling an external command in PythonHow to mkdir only if a dir does not already exist?How do I split a string on a delimiter in Bash?How do I undo the most recent local commits in Git?Automatic exit from bash shell script on errorHow to concatenate string variables in BashHow to specify the private SSH-key to use when executing shell command on Git?How do I set a variable to the output of a command in Bash?How do I install pip on Windows?How to execute mongo commands through shell scripts?

Knights and Knaves: What does C say?

Is there a relationship between prime numbers and music?

Calculate the Ultraradical

How is the Apple Watch ECG disabled in certain countries?

How do I introduce dark themes?

Why most footers have a background color has a divider of section?

Was the ruling that prorogation was unlawful only possible because of the creation of a separate supreme court?

Delete n lines skip 1 line script

What is the meaning of colored vials next to some passive skills

Can RPi4 run simultaneously on dual band (WiFi 2.4GHz / 5GHz)?

Avoiding dust scattering when you drill

Pushing the e-pawn

Duck, duck, gone!

A famous scholar sent me an unpublished draft of hers. Then she died. I think her work should be published. What should I do?

Fix Ethernet 10/100 PoE cable with 7 out of 8 wires alive

Why does `FindFit` fail so badly in this simple case?

What is the climate impact of planting one tree?

Top off gas with old oil, is that bad?

802.1Q Tagged BPDU?

Looking for circuit board material that can be dissolved

Impossible violin chord, how to fix this?

Why is a road bike faster than a city bike with the same effort? How much faster it can be?

Would a 737 pilot use flaps in nose dive?

I transpose the source code, you transpose the input!



How to run git bash scripts on windows startup


Calling an external command in PythonHow to mkdir only if a dir does not already exist?How do I split a string on a delimiter in Bash?How do I undo the most recent local commits in Git?Automatic exit from bash shell script on errorHow to concatenate string variables in BashHow to specify the private SSH-key to use when executing shell command on Git?How do I set a variable to the output of a command in Bash?How do I install pip on Windows?How to execute mongo commands through shell scripts?






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








1















I've created a shell script and for execute it I need to use GIT BASH with this command



sh scriptname.sh


It's possible execute this command on GIT BASH when windows startup automatically?










share|improve this question






























    1















    I've created a shell script and for execute it I need to use GIT BASH with this command



    sh scriptname.sh


    It's possible execute this command on GIT BASH when windows startup automatically?










    share|improve this question


























      1












      1








      1








      I've created a shell script and for execute it I need to use GIT BASH with this command



      sh scriptname.sh


      It's possible execute this command on GIT BASH when windows startup automatically?










      share|improve this question














      I've created a shell script and for execute it I need to use GIT BASH with this command



      sh scriptname.sh


      It's possible execute this command on GIT BASH when windows startup automatically?







      windows shell sh git-bash






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 19:52









      IrrechIrrech

      2983 silver badges13 bronze badges




      2983 silver badges13 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          1
















          In Windows 10:



          1) Create a regular, plain text file named myscript.txt, for example.



          2) As its contents, insert this: sh scriptname.sh. Save and close.



          3) Rename this file to myscript.bat then, with your Windows Explorer, locate the file at the filesystem folder, right click on it and select "copy".



          4) Yet on Windows Explorer, go to <ROOT>ProgramDataMicrosoftWindowsStart MenuProgramsStartUp and right click on it. Then select "paste shortcut" (you will need Administration rights to do it).



          It's done. Every time your windows starts it runs your bash.



          More info: https://support.microsoft.com/en-us/help/4026268/windows-10-change-startup-apps






          share|improve this answer





























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );














            draft saved

            draft discarded
















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55405855%2fhow-to-run-git-bash-scripts-on-windows-startup%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1
















            In Windows 10:



            1) Create a regular, plain text file named myscript.txt, for example.



            2) As its contents, insert this: sh scriptname.sh. Save and close.



            3) Rename this file to myscript.bat then, with your Windows Explorer, locate the file at the filesystem folder, right click on it and select "copy".



            4) Yet on Windows Explorer, go to <ROOT>ProgramDataMicrosoftWindowsStart MenuProgramsStartUp and right click on it. Then select "paste shortcut" (you will need Administration rights to do it).



            It's done. Every time your windows starts it runs your bash.



            More info: https://support.microsoft.com/en-us/help/4026268/windows-10-change-startup-apps






            share|improve this answer































              1
















              In Windows 10:



              1) Create a regular, plain text file named myscript.txt, for example.



              2) As its contents, insert this: sh scriptname.sh. Save and close.



              3) Rename this file to myscript.bat then, with your Windows Explorer, locate the file at the filesystem folder, right click on it and select "copy".



              4) Yet on Windows Explorer, go to <ROOT>ProgramDataMicrosoftWindowsStart MenuProgramsStartUp and right click on it. Then select "paste shortcut" (you will need Administration rights to do it).



              It's done. Every time your windows starts it runs your bash.



              More info: https://support.microsoft.com/en-us/help/4026268/windows-10-change-startup-apps






              share|improve this answer





























                1














                1










                1









                In Windows 10:



                1) Create a regular, plain text file named myscript.txt, for example.



                2) As its contents, insert this: sh scriptname.sh. Save and close.



                3) Rename this file to myscript.bat then, with your Windows Explorer, locate the file at the filesystem folder, right click on it and select "copy".



                4) Yet on Windows Explorer, go to <ROOT>ProgramDataMicrosoftWindowsStart MenuProgramsStartUp and right click on it. Then select "paste shortcut" (you will need Administration rights to do it).



                It's done. Every time your windows starts it runs your bash.



                More info: https://support.microsoft.com/en-us/help/4026268/windows-10-change-startup-apps






                share|improve this answer















                In Windows 10:



                1) Create a regular, plain text file named myscript.txt, for example.



                2) As its contents, insert this: sh scriptname.sh. Save and close.



                3) Rename this file to myscript.bat then, with your Windows Explorer, locate the file at the filesystem folder, right click on it and select "copy".



                4) Yet on Windows Explorer, go to <ROOT>ProgramDataMicrosoftWindowsStart MenuProgramsStartUp and right click on it. Then select "paste shortcut" (you will need Administration rights to do it).



                It's done. Every time your windows starts it runs your bash.



                More info: https://support.microsoft.com/en-us/help/4026268/windows-10-change-startup-apps







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Mar 28 at 20:22

























                answered Mar 28 at 20:16









                statosdotcomstatosdotcom

                2,9222 gold badges10 silver badges31 bronze badges




                2,9222 gold badges10 silver badges31 bronze badges

































                    draft saved

                    draft discarded















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55405855%2fhow-to-run-git-bash-scripts-on-windows-startup%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해