bat,G'MIC,windows,画像

Thumbnail of post image 176

Windows でコマンドラインで命令を入れるとうまく解釈してくれず思い通りの動きをしてくれません

コマンドラインを確認する方法とうまく解釈してくれたコマンドを示します

-debug

うまくいかなかった例です。余 ...

G'MIC,windows,画像

Thumbnail of post image 093

コマンドの流し方と作り方

拡張子がgmicのテキストファイルを作ります

gmic image.jpg macros.gmic -my_custom_command

command パラメーターの後ろに記述することもで ...

bat,PowerShell ,windows

Thumbnail of post image 135

choiceコマンドを使って条件分岐でコマンドを実行できますが毎回の答えは大変です

バッチファイル

何かキーボードをしたらコマンドプロント 時間切れだとノートパッドを起動します

::powershell -Execut ...

C++,windows

Thumbnail of post image 091
meson ダウンロードインストール

Releases · mesonbuild/meson (github.com)

meson-1.4.0-64.msi

libraqmダウンロードビルドgit clone" ...

bat,PowerShell ,windows

Thumbnail of post image 165

通常では bomがついて 出力されてしまいます

バージョンの確認$PSVersionTable新しいバージョンのパワーシェルPowerShellをインストール

Releases · PowerShell/PowerShell ...

windows

Thumbnail of post image 020

ホームページの仕様が変わるとXpathを作ったプログラムを変更するのが大変になります

変更前と変更後のXpathの一覧を作成変更前と変更後のXpathをカンマ区切りで並べる

CSV エディタを使っても大丈夫です

一括で ...

bat,PowerShell ,windows

Thumbnail of post image 016

バッチファイルpowershell -command "(Get-Content .\hello.txt) | %%{ $_ -replace 'hello','konbanwa'} | set-c ...

bat,PowerShell ,windows

Thumbnail of post image 009

バッチファイルpowershell -command "Get-Content output1.txt -Head 2 | Out-Host"powershell -command "Get-Content o ...

bat,PowerShell ,windows

Thumbnail of post image 199

バッチファイルpowershell -command "$i=1;$inputF ='output1.txt';$baseName = ::GetFileNameWithoutExtension($inputF); ...

bat,PowerShell ,windows

Thumbnail of post image 037

バッチファイルpowershell -command "Get-Content output1.txt -ReadCount 2 | %%{$_ -join ','} | Out-Host"aqbkcma ...