зеркало из
https://github.com/iharh/notes.git
synced 2025-10-30 05:06:05 +02:00
18 строки
333 B
Plaintext
18 строки
333 B
Plaintext
type (whence -v)
|
|
find a command (in PATH), alias, ...
|
|
functions (type -f)
|
|
lists only functions but in full-text
|
|
which
|
|
-//-
|
|
|
|
Recursive searching:
|
|
|
|
print -l **/*.c
|
|
Here ** is a build-in ability to recursive search, -l - print one argument per line
|
|
|
|
Fast search
|
|
|
|
locate / updatedb (/etc/updatedb.conf)
|
|
|
|
Note: db is at /var/locatedb
|