Query: function::cmdline_args
OS: debian
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
function::cmdline_args FUNCTION:(3stap) Context Functions FUNCTION:(3stap)NAMEfunction::cmdline_args - Fetch command line arguments from current processSYNOPSIScmdline_args:string(n:long,m:long,delim:string)ARGUMENTSn First argument to get (zero is the command itself) m Last argument to get (or minus one for all arguments after n) delim String to use to delimit arguments when more than one.DESCRIPTIONReturns arguments from the current process starting with argument number n, up to argument m. If there are less than n arguments, or the arguments cannot be retrieved from the current process, the empty string is returned. If m is smaller than n then all arguments starting from argument n are returned. Argument zero is traditionally the command itself. SystemTap Tapset Reference May 2013 FUNCTION:(3stap)