Open command prompt from run->cmd
you can add a title to the command prompt title bar it by simply adding the line:
title YOUR TEXT
where YOUR TEXT would be replaced by whatever text you want to show.
Share with others:
- Click to share on WhatsApp (Opens in new window)
- Click to share on Telegram (Opens in new window)
- Click to share on Twitter (Opens in new window)
- Click to share on Facebook (Opens in new window)
- Click to share on LinkedIn (Opens in new window)
- Click to email a link to a friend (Opens in new window)
- Click to share on Pinterest (Opens in new window)
- Click to share on Pocket (Opens in new window)
- Click to share on Reddit (Opens in new window)
- Click to share on Tumblr (Opens in new window)
- Click to print (Opens in new window)
- More
Related
Hide any text from others
In command prompt(cmd) type notepad read.txt:secret.it will open a notepad file and option to save it. Type any secret you want to hide then save the file. Open the read.txt that you saved, you will see no text inside it. Open notepad read.txt:secret.txt from command line to see your hidden text.
In "Windows"
Display current Git Branch name in Terminal Prompt in Mac
It's difficult to know the name of the current active GIT branch in the terminal so let's see how to do configuration to show active Git Branch name in Terminal. Run below command in terminal to open the file. sudo vim ~/.bash_profile Add below code and save the file. #…
In "Git"
Getting started with Grunt – The JavaScript Task Runner
What is Grunt: Grunt.js is a JavaScript task runner that helps to perform repetitive tasks such as: CSS Preprocessing. JavaScript linting. Unit Testing. Image optimization. Minification of JS and CSS files. Concatenating files. Reloading the browser etc. Installing Grunt: It's a command line utility. It uses Node.js and installed via npm…
In "JavaScript"