About 395,000 results
Open links in new tab
  1. How do I display a text file content in CMD? - Stack Overflow

    Jun 20, 2013 · I want to display the content of a text file in a CMD window. In addition, I want to see the new lines that added to file, like tail -f command in Unix.

  2. How do I open an Explorer window in a given directory from cmd.exe?

    I see how to launch many other programs from a batch file, but I can't find a command like open on Mac OS X. Does such a tool exist on Windows? Powershell, or a Windows API call from an executable

  3. How to open a file from the command line with a specified program?

    This isn't a feature of the command prompt, it's a feature of the executable, i.e. photoshop.exe has to be programmed to accept a file to open as a command line argument.

  4. How to open file with default application in cmd? - Stack Overflow

    50 You can use start to open the file with the associated application. Resources : Open a File in the Default Application using the Windows Command Line (without JDIC) (waybackmachine capture …

  5. How can I open a cmd window in a specific location?

    Sep 14, 2008 · The reason this answer has received so many upvotes is that it works for a shortcut. I keep a collection of shortcuts on my taskbar that each open a command prompt window in various …

  6. How to run .sh on Windows Command Prompt? - Stack Overflow

    Oct 23, 2014 · Your answer is presented as if you expect to be able to type sh on an arbitrary Windows command prompt and have it work.

  7. View log files in windows command prompt similar to tail command in ...

    Jun 17, 2014 · Is there a command similar to tail command in linux to view log files in windows. Linux Command: $ tail -f /var/log/syslog -f /var/log/myLog.log.

  8. Open text file and program shortcut in a Windows batch file

    12 Don't put quotes around the name of the file that you are trying to open; start "myfile.txt" opens a new command prompt with the title myfile.txt, while start myfile.txt opens myfile.txt in Notepad.

  9. How to quickly open the current directory from the command prompt?

    Oct 2, 2015 · There is a need to quickly open the current directory from the command prompt. I know that there is a command explorer. But to enter the full path to the directory is very inconvenient. For …

  10. How to open Visual Studio Solution File from the Command Prompt

    Today I was in the Windows Command Prompt after doing a git clone https://...MySolution.git and wanted to open the .sln (i.e., solution file) from the new directory of the cloned repo.