== Repost the article of Cheng Wei ([email protected]) == 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.
