| delorie.com/archives/browse.cgi | search |
| X-Recipient: | archive-cygwin AT delorie DOT com |
| X-Original-To: | cygwin AT cygwin DOT com |
| Delivered-To: | cygwin AT cygwin DOT com |
| DMARC-Filter: | OpenDMARC Filter v1.3.2 sourceware.org 72E373857C7F |
| Authentication-Results: | sourceware.org; dmarc=none (p=none dis=none) |
| header.from=ext.eeas.europa.eu | |
| Authentication-Results: | sourceware.org; spf=pass |
| smtp.mailfrom=Panagiotis DOT KAVALAGIOS AT ext DOT eeas DOT europa DOT eu | |
| From: | "KAVALAGIOS Panagiotis (EEAS-EXT)" |
| <Panagiotis DOT KAVALAGIOS AT ext DOT eeas DOT europa DOT eu> | |
| To: | Achim Gratz <Stromeko AT nexgo DOT de>, "cygwin AT cygwin DOT com" <cygwin AT cygwin DOT com> |
| Subject: | RE: Limitation of setenv for tcsh: Too many arguments |
| Thread-Topic: | Limitation of setenv for tcsh: Too many arguments |
| Thread-Index: | AdblpVF/4EjvyaxZQDy6kgfzZaXMJwABSy/jAABYZ7AAC4wNxQCFMyTQ |
| Date: | Mon, 11 Jan 2021 08:11:31 +0000 |
| Message-ID: | <dcc35d6989ac403eb0b70fb80384c2fc@BELBRU-EXMP101.eeas.europa.eu> |
| References: | <0d66260ff1314bf693caa6cbb6647547 AT BELBRU-EXMP101 DOT eeas DOT europa DOT eu> |
| <871revlnmg DOT fsf AT Otto DOT invalid> | |
| <63cabc18e6f845a7aaae49ce447cc152 AT BELBRU-EXMP101 DOT eeas DOT europa DOT eu> | |
| <87eeiv9zat DOT fsf AT Rainer DOT invalid> | |
| In-Reply-To: | <87eeiv9zat.fsf@Rainer.invalid> |
| Accept-Language: | en-GB, el-GR, en-US |
| X-MS-Has-Attach: | |
| X-MS-TNEF-Correlator: | |
| x-ms-exchange-transport-fromentityheader: | Hosted |
| x-originating-ip: | [10.51.5.118] |
| MIME-Version: | 1.0 |
| X-Proofpoint-Virus-Version: | vendor=fsecure engine=2.50.10434:6.0.343, 18.0.737 |
| definitions=2021-01-09_13:2021-01-07, | |
| 2021-01-09 signatures=0 | |
| X-Proofpoint-Spam-Details: | rule=outbound_spam_notspam policy=outbound_spam |
| score=0 malwarescore=0 | |
| phishscore=0 mlxlogscore=705 bulkscore=0 spamscore=0 priorityscore=1501 | |
| clxscore=1011 suspectscore=0 impostorscore=0 mlxscore=0 lowpriorityscore=0 | |
| adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 | |
| engine=8.12.0-2009150000 definitions=main-2101110048 | |
| X-Spam-Status: | No, score=-3.9 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, |
| RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_PASS, | |
| TXREP autolearn=ham autolearn_force=no version=3.4.2 | |
| X-Spam-Checker-Version: | SpamAssassin 3.4.2 (2018-09-13) on |
| server2.sourceware.org | |
| X-BeenThere: | cygwin AT cygwin DOT com |
| X-Mailman-Version: | 2.1.29 |
| List-Id: | General Cygwin discussions and problem reports <cygwin.cygwin.com> |
| List-Archive: | <https://cygwin.com/pipermail/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-request AT cygwin DOT com?subject=help> |
| List-Subscribe: | <https://cygwin.com/mailman/listinfo/cygwin>, |
| <mailto:cygwin-request AT cygwin DOT com?subject=subscribe> | |
| Sender: | "Cygwin" <cygwin-bounces AT cygwin DOT com> |
> -----Original Message----- > From: Cygwin <cygwin-bounces AT cygwin DOT com> On Behalf Of Achim Gratz > Sent: 08 January 2021 17:19 > > KAVALAGIOS Panagiotis (EEAS-EXT) writes: > > Why do you say both? I don't add /usr/bin anywhere. > > Your other example with the $path csh variable doesn't quote $path, which > you must do with the quote modifier rather than actual quotes, so $path:q > because it is an wordlist var. Also see the -f / -l option for the set builtin of > tcsh if you want to strip out duplicates and take note of some subtle > differences in the default quoting between tcsh and csh if you are trying to > be portable. I might forgot to double quote my variables in my ancient tcsh startup startup scripts using in other systems, but of course I have checked the issue on a clean environment before reporting that. Forget the tcsh, this is coming from the bash as well the very first time you are running Cygwin: ------------------- Copying skeleton files. These files are for the users to personalise their cygwin experience. They will never be overwritten nor automatically updated. './.bashrc' -> '/home/kavalpa//.bashrc' './.bash_profile' -> '/home/kavalpa//.bash_profile' './.inputrc' -> '/home/kavalpa//.inputrc' './.profile' -> '/home/kavalpa//.profile' kavalpa AT BELBRU-L1903777 ~ $ echo $PATH /usr/local/bin:***/usr/bin***:/cygdrive/c/Program Files/Npm:[snip]:/cygdrive/c/Program Files/PHP/composer/bin:***/usr/bin***:/cygdrive/c/Users/kavalpa/AppData/Local/Microsoft/WindowsApps ------------------- The issue is enclosed with a three-star notation. I have checked /etc startup files, but I couldn't figure out why this is happening. It is also weird the location at the end before user's personal paths. > >> As an aside, it is highly unlikely that you'd actually want to set up > >> your PATH like that. > > > > Care to explain? How else can I add in the path custom personal > commands? > > I just don't think it's a good idea to have all that stuff in PATH, especially since > PATH in Windows determines library search order and there is a high > propensity for libraries with the same name getting reachable via PATH for > your example. I tend to stay within Cygwin as much as possible and have > wrapper scripts setting up the environment for all other commands. There is a point with the DLLs in the path of Windows, but where do you store your wrapper scripts? Because I usually place them in my ~/bin, which is the only solution when you don't have admin rights on your machine. When I do have admin rights, I usually place them in /usr/local/bin. Panos Application Architect CONSULIAT (under contract with the EEAS) BA.BS.3.IS Office: EEAS B100 Floor 5 Area 048 Rue Belliard 100, 1000 Brussels Phone: +32 2 584 6017 -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation: https://cygwin.com/docs.html Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |