Windowsはxargsと同等ですか?


回答:


11

オリジナルのツールをインストールすることは、すべてを書き直すよりも統一の点ではるかに優れていると思います。私は個人的にGOWを使用していますが、まだ少数のコマンドを見逃していますが、最も必要なものはすべて含まれています。

それでもバッチプログラミングを実行したい場合は、すべてのコマンドの良いリストがあります:http : //ss64.com/nt/、必要だと思いますforfiles


同じはxargs.exeパッケージに含まれていますfindutilsプロジェクトからGnuWingnuwin32.sourceforge.net/packages/findutils.htm
tehnicaorg

1

ここからコピーしました

@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

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.