- Press Win+S
- Type PowerShell
- Right click on PowerShell
- Run as administrator
- Copy
Install-Module -Force PSReadLine
to launched PowerShell window - Press Enter
- Select 'Y' to answer the question
#!/bin/bash | |
# | |
# Watch current directory (recursively) for file changes, and execute | |
# a command when a file or directory is created, modified or deleted. | |
# | |
# Written by: Senko Rasic <[email protected]> | |
# Modified by: Grigory Stupnikov | |
# | |
# Requires Linux, bash and inotifywait (from inotify-tools package). | |
# |