简体   繁体   中英

Translating linux command script to powershell command script

i am attempting to translate this snippet:

 "find &filsti./ -name '*.sas7bdat' -type f -printf '%u;%p;%a\n'"

into powershell, so that i can scan for files the same way in windows as i do in linux. Can anyone assist me? Appreciate any help i can get.

No idea what that last part is, but try this:

Get-ChildItem -Path "C:\path" -Include *.sas7bdat -Recurse

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM