I want to know if it is possible (with a built in variable) to work directly with current file opened in Visual Studio from intergrated terminal, for example:
>some_command $current_file (Where $current_file would be a built-in variable that calls the current active file)
instead of what I have to do now if terminal is CMD (DOS):
> more C:\The\Path\to\File\MyFile.txt
Or if the terminal used is bash:
$ cat /The/Path/to/File/MyFile.txt