Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #!/bin/bash
  2. echo "this"$1
  3. sleep 30
  4.  
  5. C:cygwin64binbash.exe --login -i '/cygdrive/c/cygwin64/echo.sh'
  6.  
  7. C:cygwin64binbash.exe --login -i '/cygdrive/c/cygwin64/echo.sh $1' #file not found
  8. C:cygwin64binbash.exe --login -i '/cygdrive/c/cygwin64/echo.sh' $1 #prints 'this$1'
  9.  
  10. C:cygwin64binbash.exe --login -i '/cygdrive/c/cygwin64/echo.sh' %1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement