mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
15 lines
204 B
Text
15 lines
204 B
Text
#
|
|
# @TEST-EXEC: bro %INPUT >out
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
event bro_init()
|
|
{
|
|
local a = "echo ${TEST} > \"my file\"";
|
|
|
|
print |a|;
|
|
print a;
|
|
|
|
local b = str_shell_escape(a);
|
|
print |b|;
|
|
print b;
|
|
}
|