About 647,000 results
Open links in new tab
  1. Get the Path of a Linux Command | Baeldung on Linux

    Mar 18, 2024 · We can find what it is and its path with several Linux utilities such as which, command, type, locate, whatis, and whereis. In this article, we will explore the which, …

  2. How to find a path of a Linux command like a pro - nixCraft

    Sep 23, 2025 · Explains how to find a path of a Linux command and get help using the which, whereis, whatis, type, and other Bash/Terminal utilities.

  3. linux - How to find directory of some command? - Stack Overflow

    Some elaboration might be helpful to future readers: to find the binary you gotta use -b option, and then you can combine it with awk to get the path. So, something like: whereis -b ack | awk …

  4. How do I find the path to a command file? - nixCraft

    Aug 24, 2023 · The which command under Linux/Unix takes a list of program names and looks for the files that run when these names are given as commands. Let us see how to find path to a …

  5. How to Get the Full Path of a File in Linux - GeeksforGeeks

    Jul 24, 2025 · While dealing with files on Linux, especially shell scripts, one may require determining the full path of a file at times. Now, let's consider several methods of getting the …

  6. How to Find Full Path of a File in Linux

    Sep 13, 2022 · Here are different ways to get the absolute file paths in Linux command line. You can get the full path of a directory with the pwd command: But how do you get the absolute …

  7. Understanding Command Paths in Linux — linuxvox.com

    Nov 14, 2025 · In Linux, a command path is a list of directories that the shell searches through when you enter a command. The shell starts from the first directory in the list and moves …

  8. How to locate Linux command binaries - LabEx

    This comprehensive guide explores various methods and techniques for identifying the precise location of executable files, providing insights into how Linux resolves and manages command …

  9. How to Display the Path of an Executable File in Linux

    May 17, 2025 · Learn how to find executable paths in Linux using which, whereis, type -a, and command -v commands with clear examples and syntax.

  10. 5 Ways to Find a Linux Command Description and Location

    Jul 19, 2023 · In this article we will explain to you five useful commands for showing a short manual page description and the location of a given command in Linux.