Showing posts with label Bash. Show all posts
Showing posts with label Bash. Show all posts

Wednesday, April 21, 2021

How to install MinGW on Windows 10

In this video, you will learn on how to install MinGW on Windows 10. After install MinGW, you will get many command tools from Gnu and BSD projects. For example, ls, pwd, sed, awk, gcc and g++. This video will also show you how to run BASH and compile a C program using gcc.

Friday, July 24, 2015

Remove everything from the terminal prompt except for the current directory

You can remove everything from the terminal prompt except for the current directory if you append the following code into ~/.bash_profile.
export PS1="\W\$ "