exec-with-alias[procedure] exec program-name arg1 ...[procedure] exec-with-environment program-name env arg1 ...[procedure] exec-file filename arg1 ...[procedure] exec-file-with-environment filename env arg1 ...[procedure] exec-with-alias name lookup? maybe-env argumentsScheme48: Exec family. Exec and exec-with-environment use search path (so they're like POSIX execlp()), while exec-file and exec-file-with-envionment use absolute path to the executable (so they're like POSIX execl()). program-name or filename is used as argv[0], except exec-with-alias. See also fork, Concept:Process. Names in other implementations: process-execute, sys-exec?, posix-exec?, etc. [procedure] exec stringSTk, STklos: STk's exec is not the same as exec(2). It executes the specified command, redirecting its output to a string, and returns it. To get exec(2) behavior in STk, use posix-exec?. For STklos, see also exec-list. Gauche has similar function with the name process-output->string. | About This SiteHome Alphabetical Indexa b c d e f g h i j k l m n o p q r s t u v w x y z other ConceptsConcept:CaseSensitivity Concept:DocumentationFormat Concept:ExtendedLambdaList Concept:FileSystem Concept:FindAndAnyInCollection Concept:HashTable Concept:Module Concept:Networking Concept:ObjectSystem Concept:Process Concept:RegularExpression Concept:UserGroup Implementations
External Links |