From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.36.34.74 with SMTP id o71mr9458748ito.15.1515443641873; Mon, 08 Jan 2018 12:34:01 -0800 (PST) X-Received: by 10.157.88.134 with SMTP id x6mr614901otg.4.1515443641786; Mon, 08 Jan 2018 12:34:01 -0800 (PST) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!news.unit0.net!peer02.am4!peer.am4.highwinds-media.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!i6no1601441itb.0!news-out.google.com!b73ni5355ita.0!nntp.google.com!i6no1601437itb.0!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Mon, 8 Jan 2018 12:34:01 -0800 (PST) In-Reply-To: <194af3eb-d3f5-4587-a568-509e19a4971b@googlegroups.com> Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=149.32.224.39; posting-account=Qh2kiQoAAADpCLlhT_KTYoGO8dU3n4I6 NNTP-Posting-Host: 149.32.224.39 References: <397e0653-1512-4111-b321-edde0c024bc8@googlegroups.com> <2462e55d-57d1-4753-b3e2-cd0a0b0f28e0@googlegroups.com> <9bedbd9c-94d3-4aaa-ab92-0b2e8648e403@googlegroups.com> <9c4d5a06-086d-41b0-96c8-27fbf1c71b5d@googlegroups.com> <194af3eb-d3f5-4587-a568-509e19a4971b@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Re: Ada download From: Anh Vo Injection-Date: Mon, 08 Jan 2018 20:34:01 +0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Received-Body-CRC: 2796466675 X-Received-Bytes: 2787 Xref: reader02.eternal-september.org comp.lang.ada:49814 Date: 2018-01-08T12:34:01-08:00 List-Id: On Monday, January 8, 2018 at 10:53:14 AM UTC-8, sophia....@gmail.com wrote= : > =20 > But how do I use the program? Do I have gps now? If yes, how do I open it= ?=20 > I am so sorry for all these questions, I just really want to learn progr= amming and we're using Ada at our school > I have not used MacOS for a long time. Thus, my knowledge could be rusted.= =20 Most of your questions can be answered by understanding MacOS, less with GN= AT. GPS will be available once GNAT is installed. But, you need to tell the= OS where to look for. Thus, a shell script needs to be created. Below is t= he content of my shell script (Bourne shell), gnat-2017.bash, for my Red Ha= t Enterprise Linux. PATH=3D/home/voax/GNAT/gnat-gpl-2017/bin:$PATH export PATH For your case, it should be similar as PATH=3D"/usr/local/gnat2017/bin:$PATH" export PATH The last step is to invoke it assuming that it is located at /home/adampour= and its name is adampour-gnat-2017.bash ~adampour/adampour-gnat-2017.bash You are ready to enter your command, gps &, from anywhere.=20 I hope it helps. Anh Vo =20