I am using Cygwin:
tail -f prueba.txt
The file is located in the c: \ cygwin \ home \ (/ home /) directory.
How can I do the same for a file that is in:
c:/wamp/logs/
cygdriveis the root point for Windows drives, so c:\can be found in CygWin's /cygdrive/c.
cygdrive
c:\
/cygdrive/c
So the command you are looking for is:
tail -f /cygdrive/c/wamp/logs/somefile.txt