linux - Bash like management in windows environment -


i have worked in bash on linux couple of years. moved windows. in bash, run couple of .cpp files, take output 1 , give in smooth way. want same .bat files too, find no tutorial on that. please guide me through process.

dos, written microsoft unix heads, has syntax similar unix. first thing added dos when bought it.

&    separates commands on line.  &&    executes command if previous command's errorlevel 0.  ||    (not used above) executes command if previous command's errorlevel not 0  >    output file  >>    append output file  <    input file  |    output of 1 command input of command  ^    escapes of above, including itself, if needed passed program  "    parameters spaces must enclosed in quotes  + used copy concatenate files. e.g. copy file1+file2 newfile  , used copy indicate missing parameters. updates files modified date. e.g. copy /b file1,,  %variablename% inbuilt or user-set environment variable  !variablename! user-set environment variable expanded @ execution time, turned command setlocal enabledelayedexpansion  %<number> (%1) nth command line parameter passed batch file. %0 batch file's name.  %* (%*) entire command line.  %<a letter> or %%<a letter> (%a or %%a) variable in loop. single % sign @ command prompt , double % sign in batch file. 

also, windows runs unix (different flavours, depending on version. current ones come korn shell @ least, not bash). depending on windows version , edition, either on dvd or has downloaded ms. first, in windows programs , features in control panel turn on. else, http://www.microsoft.com/en-au/download/details.aspx%3fid%3d274&rct=j&frm=1&q=&esrc=s&sa=u&ei=kgy8vagtc4w1mawvqocqcq&ved=0cb8qfjab&usg=afqjcnepycukggdsnww8_rexmybukitv3q

windows nt os runs other oss. windows, os/2 2.1, , several posix/unix implementations.


Comments

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -

ubuntu - Selenium Node Not Connecting to Hub, Not Opening Port -