回答:
オリジナルのツールをインストールすることは、すべてを書き直すよりも統一の点ではるかに優れていると思います。私は個人的にGOWを使用していますが、まだ少数のコマンドを見逃していますが、最も必要なものはすべて含まれています。
それでもバッチプログラミングを実行したい場合は、すべてのコマンドの良いリストがあります:http : //ss64.com/nt/、必要だと思いますforfiles
。
@echo off
:: example: git branch | grep -v "develop" | xargs git branch -D
:: example xargs -a input.txt echo
:: https://helloacm.com/simple-xargs-batch-implementation-for-windows/
setlocal enabledelayedexpansion
set args=
set file='more'
:: read from file
if "%1" == "-a" (
if "%2" == "" (
echo Correct Usage: %0 -a Input.txt command
goto end
)
set file=%2
shift
shift
goto start
)
:: read from stdin
set args=%1
shift
:start
if [%1] == [] goto start1
set args=%args% %1
shift
goto start
:start1
for /F "tokens=*" %%a in (!file!) do (
%args% %%a
)
:end
pyinstallerと短いpythonスクリプトを使用して作成されたWindows用のミニマリストxargsは以下から入手できます。
xargs.exe
パッケージに含まれていますfindutils
プロジェクトからGnuWin
(gnuwin32.sourceforge.net/packages/findutils.htm)