ฉันกำลังพยายามหาเวอร์ชั่นsed
ที่ฉันใช้บน BusyBox 1.18.3 --version
ผลผลิตเป็นที่คลุมเครือ
$ sed --version
This is not GNU sed version 4.0
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;
}
นี่คือส่วนหัว:
/*
* 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.
*/
นอกจากนี้ยังมีรายการ "คุณสมบัติและคำสั่งที่รองรับใน sed รุ่นนี้" ดูเหมือนเป็นพิเศษsed
แต่มันพิเศษอย่างไร มันทำเองสำหรับ BusyBox หรือมันมาจากแหล่งอื่น?
ฉันจะอ้างถึงสิ่งนี้ได้sed
อย่างไรเช่นในคำถาม SE