Wpis z mikrobloga

@thrnuc: jak polaczyc plik?

linux: cat 1 2 > prosz
CMD: copy /b 1 + 2 prosz
powershell:

##script.ps1##
param(
[string]$inpath,
[string]$outpath
)
Get-ChildItem -path $inpath -recurse |?{ ! $_.PSIsContainer } |?{($_.name).contains(".txt")} | %{ Out-File -filepath $outpath -inputobject (get-content $_.fullname) -Append}
##script.ps1##

#then run this
#.\script.ps1 "c:\users" "c:\test.txt"