|
Many
Unix utilities and
commands such as vi, ls, awk, sed, mv,rm, cp, find, grep, etc.
are supported in Ch for Widodws for portable shell programming.
C:/temp> pwd
C:/temp>
C:/temp> mkdir mydir
C:/temp> cd mydir
C:/temp/mydir> touch testfile
C:/temp/mydir> cp testfile testfile2
C:/temp/mydir> ls
testfile testfile2
C:/temp/mydir> rm testfile
C:/temp/mydir> ls
testfile
C:/temp/mydir> which grep
C:/ch/bin/grep.exe
C:/temp/mydir>
|