How to Install Betty for Styling and Formatting C Programming Files
Heya! 👋 I love helping people, and one of the best ways I do this is by sharing my knowledge and experiences. My journey reflects the power of growth and transformation, and I’m here to document and share it with you.
I started as a pharmacist, practicing at a tertiary hospital in the Northern Region of Ghana. There, I saw firsthand the challenges in healthcare delivery and became fascinated by how technology could offer solutions. This sparked my interest in digital health, a field I believe holds the key to revolutionizing healthcare.
Determined to contribute, I taught myself programming, mastering tools like HTML, CSS, JavaScript, React, PHP, and more. But I craved deeper knowledge and practical experience. That’s when I joined the ALX Software Engineering program, which became a turning point. Spending over 70 hours a week learning, coding, and collaborating, I transitioned fully into tech.
Today, I am a Software Engineer and Digital Health Solutions Architect, building and contributing to innovative digital health solutions. I combine my healthcare expertise with technical skills to create impactful tools that solve real-world problems in health delivery.
Imposter syndrome has been part of my journey, but I’ve learned to embrace it as a sign of growth. Livestreaming my learning process, receiving feedback, and building in public have been crucial in overcoming self-doubt. Each experience has strengthened my belief in showing up, staying consistent, and growing through challenges.
Through this platform, I document my lessons, challenges, and successes to inspire and guide others—whether you’re transitioning careers, exploring digital health, or diving into software development.
I believe in accountability and the value of shared growth. Your feedback keeps me grounded and motivated to continue this journey. Let’s connect, learn, and grow together! 🚀
Go to the Betty repository: https://github.com/alx-tools/Betty/
Click the green code button and copy the https url for the repository.

Proceed to clone the repository unto your own machine or the terminal you are using.
git clone https://github.com/alx-tools/Betty.git
After cloning, you run the ls command to see the list of directories in your current location where Betty would have been cloned to. You should find the directory Betty amongst them.
Open that directory with the change directory command cd
cd Betty
ls
You can also list out the files within the directory to have an idea of all the files in there. You are expected to see all the following files:
bettty-doc.pl betty-style.pl betty.sh install.sh LICENSE man README.md test.sh tests
The file of interest to you now is the install.sh
To install betty on your computer, run the command below:
sudo ./install.sh
This may require you to enter your password. Once you enter your password and hit ENTER, Betty will be installed on your computer.
After installing, you can now have access to the two commands: betty-style and betty-doc
When it comes to using these commands, you can use it with a single file or multiple files at the same time.
Examples:
betty-style file1 file2 file3 ...
betty-doc file1 file2 file3 ...
To understand and learn more about Betty Style for formatting your C programming files, check out this post that I published earlier.