0

When I want to run Python in terminal, I would like to type ABC instead of typing python.

How to change the process name in Ubuntu?

ex) python -> ABC

dur
  • 15,689
  • 25
  • 79
  • 125
  • 1
    Possible duplicate of [Is there a way to change effective process name in Python?](https://stackoverflow.com/questions/564695/is-there-a-way-to-change-effective-process-name-in-python) – Obsidian Age May 30 '17 at 04:29
  • 1
    I think you are looking for the `alias` command. – ncke May 30 '17 at 04:47

1 Answers1

0

You can try this:

alias 'ABC=python'

Then ABC will call python...

If you want to make it permanent, add this line to your .bash_profile

J. Chomel
  • 8,193
  • 15
  • 41
  • 69