mirror of
https://github.com/dvorka/hstr.git
synced 2025-01-05 06:32:11 +08:00
12 lines
241 B
Bash
12 lines
241 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
clear
|
||
|
gcc ./src/test_favorites.c ../src/hstr_favorites.c ../src/hstr_utils.c -o _favorites
|
||
|
cp -vf ./resources/.hh_favorites ~/.hh_favorites
|
||
|
cat ~/.hh_favorites
|
||
|
echo -e "\n-------------\n"
|
||
|
./_favorites
|
||
|
cat ~/.hh_favorites
|
||
|
|
||
|
# eof
|