Sto cercando di capire quale versione sed
ho su BusyBox 1.18.3. L' --version
output è criptico.
$ sed --version
This is not GNU sed version 4.0
Il seguente codice proviene dal pertinente sed.c
.
/* Lie to autoconf when it starts asking stupid questions. */
if (argv[1] && !strcmp(argv[1], "--version")) {
puts("This is not GNU sed version 4.0");
return 0;
}
Questa è l'intestazione:
/*
* sed.c - very minimalist version of sed
*
* Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
* Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
* Copyright (C) 2002 Matt Kraai
* Copyright (C) 2003 by Glenn McGrath
* Copyright (C) 2003,2004 by Rob Landley <rob@landley.net>
*
* MAINTAINER: Rob Landley <rob@landley.net>
*
* Licensed under GPLv2, see file LICENSE in this source tree.
*/
C'è anche un elenco di "funzioni e comandi supportati in questa versione di sed". Sembra uno speciale sed
, ma come è speciale? È fatto su misura per BusyBox o proviene da un'altra fonte?
Come devo fare riferimento a questo sed
, ad esempio nelle domande SE?