mirror of
https://github.com/dvorka/hstr.git
synced 2024-11-14 20:06:06 +08:00
10 lines
160 B
Bash
Executable file
10 lines
160 B
Bash
Executable file
#!/bin/bash
|
|
|
|
clear
|
|
rm -vf ./_utf8
|
|
echo "Linking wide version of Curses library (libncursesw5-dev)..."
|
|
gcc ./src/test_utf8.c -o _utf8 -lncursesw
|
|
./_utf8
|
|
|
|
# eof
|
|
|