2020-10-24から1日間の記事一覧

* Linux(Ubuntu)のPowerShell Coreで,指定したディレクトリー内で再帰的に正規表現に一致したファイルを,カレントディレクトリーにコピー

:CATEGORIES: PowerShell Core,正規表現 PS (19:09:35) > Get-ChildItem -Path ~/ -Recurse | Where-Object { $_.name -match "^200[1-3]-..-...*\.jpg$" }| % { $n = $_.name; if (Test-Path ./$n) { echo "ここに,${n}はあります。" } else { cp $_.FullN…

* Linux(Ubuntu)で,C#のCoreTweetのコンパイルと実行を出来るようした,dotnetとmono

dotnetの方は,「dotnet add package CoreTweet --version 1.0.0.483」とやるだけで,情報さえ見つかれば,そのまま実行するだけで簡単でした。dotnetはインストールも簡単だったと思います。 しかし,dotnetは,「dotnet new console -o twitterTl」などと…