Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sdd.hp.com!mips!pacbell.com!pacbell!unet!imram.net.com From: jukoff@imram.net.com (Steve Jukoff) Newsgroups: comp.unix.questions Subject: awk system("vi +/string file") Keywords: awk system Message-ID: <1336@unet.UUCP> Date: 19 Apr 91 01:38:33 GMT Sender: news@unet.UUCP Organization: NET Lines: 14 The (new) AWK "system()" call is difficult to use when the command is stored in a variable: system("vi +/string file") ...works cmd = "vi +/string file" system(cmd) ...fails Can anyone tell me why this occurs AND how to fix it? The problem seems to center on multiple levels of quoting interpretation. In AWK, there is no CSH-like "set noglob" command that I know of.