Skip to main content
missing quotes
Source Link
Stéphane Chazelas
  • 584.5k
  • 96
  • 1.1k
  • 1.7k

You need to add directory with your script to the PATH variable:

export PATH=$PATHPATH="$PATH:/path/to/dirdir"

or you can even add current directory to the PATH:

export PATH=$PATHPATH="$PATH:."

The later has some security drawback though.

You need to add directory with your script to the PATH variable:

export PATH=$PATH:/path/to/dir

or you can even add current directory to the PATH:

export PATH=$PATH:.

The later has some security drawback though.

You need to add directory with your script to the PATH variable:

export PATH="$PATH:/path/to/dir"

or you can even add current directory to the PATH:

export PATH="$PATH:."

The later has some security drawback though.

added 3 characters in body
Source Link
jimmij
  • 48.7k
  • 20
  • 136
  • 141

You need to add directory with your script to the PATH variable:

export PATH=$PATH:/path/to/dir

or you can even add current directory to the PATH:

export PATH=$PATH:.

The later has some security drawback though.

You need add directory with your script to the PATH variable:

export PATH=$PATH:/path/to/dir

or you can even add current directory to the PATH:

export PATH=$PATH:.

The later has some security drawback though.

You need to add directory with your script to the PATH variable:

export PATH=$PATH:/path/to/dir

or you can even add current directory to the PATH:

export PATH=$PATH:.

The later has some security drawback though.

replaced http://superuser.com/ with https://superuser.com/
Source Link

You need add directory with your script to the PATH variable:

export PATH=$PATH:/path/to/dir

or you can even add current directory to the PATH:

export PATH=$PATH:.

The later has some security drawbacksecurity drawback though.

You need add directory with your script to the PATH variable:

export PATH=$PATH:/path/to/dir

or you can even add current directory to the PATH:

export PATH=$PATH:.

The later has some security drawback though.

You need add directory with your script to the PATH variable:

export PATH=$PATH:/path/to/dir

or you can even add current directory to the PATH:

export PATH=$PATH:.

The later has some security drawback though.

Source Link
jimmij
  • 48.7k
  • 20
  • 136
  • 141
Loading