Skip to content

Commit

Permalink
Update Shell.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Max-Starling authored Nov 10, 2023
1 parent 9daf392 commit d6c3c6a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion tech/Shell.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,17 @@ JavaScript не является таким языком, поскольку к
#!/usr/bin/env node
console.log('Hello JavaScript!');
```
Скриншот из Chrome:
Скриншот из Chrome:

![image](https://github.com/Max-Starling/Notes/assets/22237384/c15eeac6-e9d6-495d-b9ad-6a54be56dc22)

# Комментарии
`#`

# Замена символов
`-replace '<from>','<to>'`
```powershell
$foo = 'hi-notes!'
$bar = $foo -replace '[-]',' ' -replace '!', ''
echo $bar # hi notes
```

0 comments on commit d6c3c6a

Please sign in to comment.