[Verse]
В этот день звучит победно
В честь защитников страны:
"Мы желаем вам успеха,
Пусть сбываются мечты!"
[Chorus]
Жизнь несет вам только радость и смех,
Сквозь года, сквозь любые препо́ны!
[Verse] В этот день звучит победно Честь защитников страны. Мы желаем вам успеха, Пусть сбываются мечты!
[Chorus] Пусть сигнал счастья будет чистым, Без помех и без преград! Жизнь несёт пусть только радость,
This file contains hidden or 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
| #!/bin/bash | |
| # Recursive file convertion windows-1251 --> utf-8 | |
| # Place this file in the root of your site, add execute permission and run | |
| # Converts *.php, *.html, *.css, *.js files. | |
| # To add file type by extension, e.g. *.cgi, add '-o -name "*.cgi"' to the find command | |
| find ./ -name "*.php" -o -name "*.html" -o -name "*.css" -o -name "*.js" -type f | | |
| while read file | |
| do |