I have a test case.

this is test.c:
#include <stdio.h>
int    main(int argc, char *argv[])
{
    for (int i = 0; i < argc; i++)
    printf("%s\n", argv[i]);
}

compiled with gcc test.c -o testx.exe

when run from windows terminal:
testx one two three
testx
one
two
three

when run from cygwin bash shell and /cygdrive/k
jdeifik@epyc-milan-64 /cygdrive/k
$ testx one two thee
testx
one
two
thee

when run from cygwin bash shell and /cygdrive/k/pw-crack
jdeifik@epyc-milan-64 /cygdrive/k/pw-crack
$ testx one two thee
testx
one
two
thee

when run from cygwin bash shell and /cygdrive/k/pw-crack/fred_john
jdeifik@epyc-milan-64 /cygdrive/k/pw-crack/fred_john
$ !testx
testx one two thee
testx
one
two
thee

when run from cygwin bash shell and /cygdrive/k/pw-crack/fred_john/run
jdeifik@epyc-milan-64 /cygdrive/k/pw-crack/fred_john/run
$ testx one two thee

jdeifik@epyc-milan-64 /cygdrive/k/pw-crack/fred_john/run
$
logout

Please advise
jeff





--
Problem reports:      https://cygwin.com/problems.html
FAQ:                  https://cygwin.com/faq/
Documentation:        https://cygwin.com/docs.html
Unsubscribe info:     https://cygwin.com/ml/#unsubscribe-simple

Reply via email to