Hi all,
I'm trying to run a script that I wrote and it works fine, but the line drawing characters that I used to make it look nice don't work under tiny core. I tested it under lucid puppy and debian (actually, raspbian) while writing it and they looked fine. Here's a cut of the code I'm using.
Code:
echo "┌───────────Menu:──────────────┐"
echo "│ Enter 1: Simple Install │"
echo "│ Enter 2: Full Install │"
echo "│ Enter 3: Simple Uninstall │"
echo "│ Enter 4: Thorough Uninstall │"
echo "│ Enter q to quit to terminal │"
echo "│ Enter r to reboot │"
echo "└──────────────────────────────┘
As you can see, it looks fine here, but in Tiny Core it looks garbled (see attachment). I know that Tiny Core is tiny, so if I need to change the characters that's fine, I just need to know what to use. Also, it needs to work the same in CLI only mode.
I should mention, I'm running TinyCore from VMware, so if that's a problem let me know. I feel like it's probably not the problem.
Edit: I should also mention that I had to install bash for this to run.
Edit again: This script printed the characters I need... now to just put them in the proper place:
char=( 6a 6b 6c 6d 6e 71 74 75 76 77 78 )
for i in ${char[*]}; do printf "0x$i \x$i \e(0\x$i\e(B\n"; done