I need to open a file with filename that contains forward slashes. I am wondering how I can do that. I have been searching through Google and I can't seem to find a way.
Thanks
Turning my comment into a bit of a possibly useful answer. Try renaming the file.
ls -i
Will give you the inode number of the file. You can then use a combination of find and mv to rename the file as follows:
find . -inum "inode-number-from-ls -i" -exec mv {} "newfilename" \;
Give the file a "normal" new file name and you're good to go.
It must be a Windows file. You have several ways to solve this:
vi "file/name". *. If the name of the file is file/name, you can do vi fil* and this will be opened (together with others that can have same pattern).