Посмотреть ipconfig в Vim в Windows
# Given user is in Windows, using git bash
# Two commands put results of ipconfig in txt file for viewing
# In git bash use "-" instead of "/" for win terminal parameters
# Windows has clip.exe to copy output of terminal to clipboard
ipconfig -all | clip
# Open a file to view your ipconfig output
vim ipconfig.txt
# Press "p" to put the clipboard contents into the txt file
lundeen-bryan