Sponsored Content
Full Discussion: relearning
Top Forums UNIX for Dummies Questions & Answers relearning Post 302076396 by t1mb3rl1n3 on Monday 12th of June 2006 10:55:21 PM
Old 06-12-2006
relearning

greets all, hope I can find some help here. I recently installed cygwin to try to relearn/teach myself unix...used to work on older machines that ran simple unix commands, but have since been mired in windows and forgotten all but some very simple commands....so, is there a printable version of a basic command set (I know cd, ls, pwd but am lookinng for further navigation commands and arguments as well as commands to launch an executable from the bash shell)...being able to browse thru my directory is one step but acutally ebing able to utilize it would be better. Thanks for the helpSmilie

Justin
REMOVED

Last edited by cbkihong; 06-13-2006 at 02:27 AM.. Reason: email address removed
 
curl_getenv(3)							  libcurl Manual						    curl_getenv(3)

NAME
curl_getenv - return value for environment name SYNOPSIS
#include <curl/curl.h> char *curl_getenv(const char *name); DESCRIPTION
curl_getenv() is a portable wrapper for the getenv() function, meant to emulate its behaviour and provide an identical interface for all operating systems libcurl builds on (including win32). AVAILABILITY
This function will be removed from the public libcurl API in a near future. It will instead be made "available" by source code access only, and then as curlx_getenv(). RETURN VALUE
If successful, curl_getenv() returns a pointer to the value of the specified environment. The memory it refers to is malloc()ed so the application must free() this when the data is no longer needed. When curl_getenv(3) fails to find the specified name, it returns a null pointer. NOTE
Under unix operating systems, there isn't any point in returning an allocated memory, although other systems won't work properly if this isn't done. The unix implementation thus has to suffer slightly from the drawbacks of other systems. SEE ALSO
getenv(3C), libcurl 7.54.0 February 03, 2016 curl_getenv(3)
All times are GMT -4. The time now is 11:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy