diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-05-12 20:14:22 -0400 | 
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-06-06 16:15:34 +0000 | 
| commit | fe6b47b9e90c532ad0c80914f42b1856eebae154 (patch) | |
| tree | 83095321e768cdf7eaf74d454e9556c2d829299f /lib/version.h.in | |
| parent | 01e24c4a69767eb12d3c23c9f8b58063cb04f4e1 (diff) | |
lib: add cli preprocessor for `|` actions
This patch adds a CLI preprocessor function that activates when `|` is
found in the command. This is the start of adding support for some text
processing utilities intended for inline use. The first one implemented
here is `| include`, which provides grep-like filtering of command
output.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/version.h.in')
| -rw-r--r-- | lib/version.h.in | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/version.h.in b/lib/version.h.in index d9eabb9f81..52c10f7d68 100644 --- a/lib/version.h.in +++ b/lib/version.h.in @@ -47,10 +47,10 @@  #define FRR_CONFIG_ARGS "@CONFIG_ARGS@"  #define FRR_DEFAULT_MOTD \ -	"\r\n" \ -	"Hello, this is " FRR_FULL_NAME " (version " FRR_VERSION ").\r\n" \ -	FRR_COPYRIGHT "\r\n" \ -	GIT_INFO "\r\n" +	"\n" \ +	"Hello, this is " FRR_FULL_NAME " (version " FRR_VERSION ").\n" \ +	FRR_COPYRIGHT "\n" \ +	GIT_INFO "\n"  pid_t pid_output (const char *);  | 
