mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
9 lines
161 B
Bash
Executable File
9 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo 'const char about_content[] ='
|
|
sed -e '/^Authors/d' \
|
|
-e '/=\{3,\}/d' \
|
|
-e 's/-\{3,\}//' \
|
|
-e 's/\(.*\)/ " \1\\n"/'
|
|
echo ';'
|