라벨이 patch인 게시물 표시

Porting to OS/2: Install find, sed, diff, grep, awk and patch

GNU find You can get here, // ----- 2014/12/23 http://hobbes.nmsu.edu/download/pub/os2/util/disk/gnufind.zip Unzip and copy *.exe(*.cmd) and *.dll in exe dir to x:\usr\bin and x:\usr\dll, respectively. unzip gnufind.zip -d find cd find copy exe\*.exe x:\usr\bin copy exe\*.cmd x:\usr\bin copy exe\*.dll x:\usr\dll http://bauxite.sakura.ne.jp/software/os2/misc/findutils-4.4.2-os2-20111010.zip Unzip into x:\usr. unzip findutils-4.4.2-os2-20111010.zip -d x:\usr // ----- BTW, OS/2 has already find.exe, so you should rename one of those to avoid conflicts. Or add x:\usr\bin to the first of PATH. set PATH=x:\usr\bin;%PATH% GNU sed  // ----- 2014/09/08 http://hobbes.nmsu.edu/download/pub/os2/util/file/sed-3_02-r2-bin.zip Unzip into x:\usr. unzip sed-3_02-r2-bin.zip -d x:\usr http://unix.os2site.com/pub/binary/sed/sed-4_0_5-bin.zip Unzip into x:\. Then move x:\bin\sed.exe to x:\usr\bin. unzip sed-4_0_5-bin.zip -d x:\ move x:\bi...