Tryag File Manager
Home
-
Turbo Force
Current Path :
/
proc
/
self
/
root
/
usr
/
share
/
doc
/
bash-3.2
/
functions
/
Upload File :
New :
File
Dir
//proc/self/root/usr/share/doc/bash-3.2/functions/inpath
inpath() { local PROG path=$(echo $PATH | sed 's/^:/.:/ s/::/:.:/g s/:$/:./ s/:/ /g') for x in $path do [ -x $x/$1 ] && { PROG=$x/$1; break; } done [ -n "$PROG" ] }