Subhash
Subhash

Reputation: 21

ubuntu terminal: showing blank

I just run the following command to set the path while installing laravel

source ~/.bashrc

After this command nothing is shown on ubuntu terminal. just cursor is blinking. What to do?

Upvotes: 0

Views: 880

Answers (1)

RaviTezu
RaviTezu

Reputation: 3125

The purpose of ~/.bashrc file is to provide a place where you can set up variables, functions and aliases, define your prompt and define other settings that you want to use every start you open a new terminal window.

Depending on what contains inside your .bashrc file, it may give some output or nothing at all.

If you want to check whether the bin directory of laravel is added to PATH variable or not, you can check it by running echo $PATH.

Upvotes: 1

Related Questions