This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#EXTM3U | |
#EXTINF:6623, The Hatters - Онлайн-концерт 02.04.2020 | |
https://cs1-76v4.vkuservideo.net/p23/86bf73ed3c60.1080.mp4 | |
#EXTINF:9978, Вячеслав Бутусов - Онлайн-концерт 05.04.2020 | |
https://cs1-32v4.vkuservideo.net/p7/dd4dfb811952.1080.mp4 | |
#EXTINF:10065, Чиж и Co - Онлайн-концерт 12.04.2020 | |
https://cs1-82v4.vkuservideo.net/p20/1200c06e788b.1080.mp4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem | Rename-Item -NewName {$_.name -replace "^(\d)\. ",'0$1. ' } -whatif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python3 -c 'print("\\x".join(["%02x" % i for i in range(256)])[2:])' |