I know how to open multi modified files in vim with git.
vim -O $(git status -uno -s | awk '{print $2}')
But when I add this command in .bashrc file
export vim_open="vim -O $(git status -uno -s | awk '{print $2}')"
It does not work as I expect. I try to echo it but it print only vim -O.
EDIT: my bad: git status -uno -s
How can I make alias for the command?