📌  相关文章
📜  powershell 函数未被识别为 cmdlet、函数、脚本文件或可运行程序的名称.检查名称的拼写,或者如果包含路径,请验证路径是否正确并重试. - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:49.046000             🧑  作者: Mango

代码示例1
# Powershell processes in order (top-down),
# so the function definition needs to be before the function call:

function email($text){
    #email $text
}

#Do things | 
foreach{
    email($_)
}