Skip to content

Commit 3b38bba

Browse files
committed
Fix '=' char in find-file
1 parent 877d0ee commit 3b38bba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unix.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ function pstree {
178178

179179
function find-file($name) {
180180
get-childitem -recurse -filter "*${name}*" -ErrorAction SilentlyContinue | foreach-object {
181-
write-output = $PSItem.FullName
181+
write-output($PSItem.FullName)
182182
}
183183
}
184184

0 commit comments

Comments
 (0)