== Repost the article of Cheng Wei (riverch...@gmail.com)
== Posted at 2011/09/21 00:30 to digitalmars.D.learn

#import�std.process
void�main()�{
����execvp("ip",�"route");
}

result:
Object�"ute"�is�unknown,�try�"ip�help".

That�is�the�first�two�bytes�are�lost

Adding�two�spaces�works:
#import�std.process
void�main()�{
����execvp("ip",�"��route");
}

Version�2.055,�linux,�32bit

Thanks.

Reply via email to