I have a SQL notebook(notebookA) where I want to pass arguments from another notebook(notebookB).
---notebookA---
SELECT $v as $c
When I do this from notebook B, it is giving me result.
---notebookB---
%run ./notebookA $v='james' $c=name
But when there is a space in value it is giving me error like below
---notebookB---
%run ./notebookA $v='james potter' $c=name
Failed to parse %run command: string matching regex `\$[\w_]+' expected but `p' found)
What would be the solution then?
