宿題の問題があり、最後までやり遂げることができません:
Write a shell that has two folder names as parameters and moves the second
folder as subfolder of the first one and adds '.unu' to all filenames in
that second folder.
これは私が書いたものですが、うまくいきません:
gci D:\powershell\dir2 | foreach-object{ ren -new ($_.Name + ".unu")}
Copy-Item -Recurse D:\powershell\dir2.unu D:\powershell\dir2
Remove-Item -Recurse D:\powershell\dir2.unu
また、私が作成した2 つのフォルダーが表示され、そこに移動しD:\powershell
たいdir2
dir1