When running IPython I can run any shell command with an exclamation mark in front it:
In [1]: !ls
file1 file2 file3 file4
In [2]: !ls file*
file1 file2 file3 file4
However, some things (in particular the use if wildcards) don't work on the Julia REPL in shell mode (after you type in the semicolon):
shell> ls file
file1 file4 file2 file3
shell> ls file*
ls: cannot access 'file*': No such file or directory
Am I missing something here? Is there a way to get wildcards to behave as they do normally in a Linux shell?