2
I cloned the Github repository, and to execute the command I always need to type, . /directory name/vv
I imagine that this "file" is of the Linux CONFIGURE type, correct?
I wonder how I create an ALIAS on Ubuntu so that when I type only "vv" it runs this command globally from anywhere on my machine...
And if possible they could add the same process to OSX (Mac)?
It worked partially... I created an alias like this: alias vv='. /vv/vv' right? This VV folder is in the /home/joaopaulo/ and can only be executed if I am in the /home/joaopaulo/ I wanted to be able to execute this command from anywhere in the system, either in Documents or the Desktop, I wanted to)
– João Paulo Vieira da Silva
@Joãopaulo Good, if the folder
vv
is in your home, just indicate in thealias
thus:vv='$HOME/vv/vv'
should work. =)– stderr
@qmechanick Worked!!!! Thank you very much!!!
– João Paulo Vieira da Silva