How to find /usr/bin/gedit? [duplicate]How do you find the directory of a command?Gedit problem cpp file is not createdConfiguring the gedit embeded terminalHow to send current of line of code to terminal input in gedit 2013?Resize file browser bar in geditHow to add custom color scheme to gedit-3.14.0gedit: search and replace with regular expressionsGedit showing preferences option in edit menu only when I open gedit using sudo geditGedit error : Failed to connect to MirHow to reset gedit preferences?Opening gedit tabs
Orientable with respect to complex cobordism?
Why would Lupin kill Pettigrew?
Can you please explain this joke: "I'm going bananas is what I tell my bananas before I leave the house"?
Can I ask a publisher for a paper that I need for reviewing
How much current can Baofeng UV-5R provide on +V pin?
If a problem only occurs randomly once in every N times on average, how many tests do I have to perform to be certain that it's now fixed?
Select row of data if next row contains zero
Do adult Russians normally hand-write Cyrillic as cursive or as block letters?
How can an eldritch abomination hide its true form in public?
Could a guilty Boris Johnson be used to cancel Brexit?
Looking for an old image of designing a cpu with plan laid out / being edited on a literal floor
Estimate related to the Möbius function
Asking bank to reduce APR instead of increasing credit limit
What is the most important characteristic of New Weird as a genre?
Have powerful mythological heroes ever run away or been deeply afraid?
How do I get a list of only the files (not the directories) from a package?
Rotated Position of Integers
Does a component pouch automatically contain components?
Is the capacitor drawn or wired wrongly?
Is the world in Game of Thrones spherical or flat?
Make a formula to get the highest score
How to detach yourself from a character you're going to kill?
Is there a term for this?
Pros and cons of writing a book review?
How to find /usr/bin/gedit? [duplicate]
How do you find the directory of a command?Gedit problem cpp file is not createdConfiguring the gedit embeded terminalHow to send current of line of code to terminal input in gedit 2013?Resize file browser bar in geditHow to add custom color scheme to gedit-3.14.0gedit: search and replace with regular expressionsGedit showing preferences option in edit menu only when I open gedit using sudo geditGedit error : Failed to connect to MirHow to reset gedit preferences?Opening gedit tabs
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
This question already has an answer here:
How do you find the directory of a command? [duplicate]
2 answers
I can open gedit using the terminal but I want to be able to open the folder that has gedit, how?
gedit
marked as duplicate by karel, Kulfy, Eric Carvalho, WinEunuuchs2Unix, Fabby Apr 14 at 22:35
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
How do you find the directory of a command? [duplicate]
2 answers
I can open gedit using the terminal but I want to be able to open the folder that has gedit, how?
gedit
marked as duplicate by karel, Kulfy, Eric Carvalho, WinEunuuchs2Unix, Fabby Apr 14 at 22:35
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
How do you find the directory of a command? [duplicate]
2 answers
I can open gedit using the terminal but I want to be able to open the folder that has gedit, how?
gedit
This question already has an answer here:
How do you find the directory of a command? [duplicate]
2 answers
I can open gedit using the terminal but I want to be able to open the folder that has gedit, how?
This question already has an answer here:
How do you find the directory of a command? [duplicate]
2 answers
gedit
gedit
asked Apr 14 at 15:04
Nigel NgNigel Ng
1
1
marked as duplicate by karel, Kulfy, Eric Carvalho, WinEunuuchs2Unix, Fabby Apr 14 at 22:35
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by karel, Kulfy, Eric Carvalho, WinEunuuchs2Unix, Fabby Apr 14 at 22:35
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Use whereis to locate the binary, source, and manual page files for a command
$ whereis gedit
gedit: /usr/bin/gedit /usr/lib/gedit /usr/share/gedit /usr/share/man/man1/gedit.1.gz
add a comment |
For search files and directories use:
find / -name gedit
Just for searching directories:
find / -name gedit -type d
Source:
General Command Manual FIND
Other example applying this command find ...
that end with the characters "test":
find /home/enduser/ -name "*test"
or that begin with the characters"ged":
find / -name "ged*"
Don´t forget to checkout privileges or permission level when you´re looking for files or directories, sometimes require a Super User.
Hope this helps.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use whereis to locate the binary, source, and manual page files for a command
$ whereis gedit
gedit: /usr/bin/gedit /usr/lib/gedit /usr/share/gedit /usr/share/man/man1/gedit.1.gz
add a comment |
Use whereis to locate the binary, source, and manual page files for a command
$ whereis gedit
gedit: /usr/bin/gedit /usr/lib/gedit /usr/share/gedit /usr/share/man/man1/gedit.1.gz
add a comment |
Use whereis to locate the binary, source, and manual page files for a command
$ whereis gedit
gedit: /usr/bin/gedit /usr/lib/gedit /usr/share/gedit /usr/share/man/man1/gedit.1.gz
Use whereis to locate the binary, source, and manual page files for a command
$ whereis gedit
gedit: /usr/bin/gedit /usr/lib/gedit /usr/share/gedit /usr/share/man/man1/gedit.1.gz
answered Apr 14 at 15:13
MikeMike
2,93692353
2,93692353
add a comment |
add a comment |
For search files and directories use:
find / -name gedit
Just for searching directories:
find / -name gedit -type d
Source:
General Command Manual FIND
Other example applying this command find ...
that end with the characters "test":
find /home/enduser/ -name "*test"
or that begin with the characters"ged":
find / -name "ged*"
Don´t forget to checkout privileges or permission level when you´re looking for files or directories, sometimes require a Super User.
Hope this helps.
add a comment |
For search files and directories use:
find / -name gedit
Just for searching directories:
find / -name gedit -type d
Source:
General Command Manual FIND
Other example applying this command find ...
that end with the characters "test":
find /home/enduser/ -name "*test"
or that begin with the characters"ged":
find / -name "ged*"
Don´t forget to checkout privileges or permission level when you´re looking for files or directories, sometimes require a Super User.
Hope this helps.
add a comment |
For search files and directories use:
find / -name gedit
Just for searching directories:
find / -name gedit -type d
Source:
General Command Manual FIND
Other example applying this command find ...
that end with the characters "test":
find /home/enduser/ -name "*test"
or that begin with the characters"ged":
find / -name "ged*"
Don´t forget to checkout privileges or permission level when you´re looking for files or directories, sometimes require a Super User.
Hope this helps.
For search files and directories use:
find / -name gedit
Just for searching directories:
find / -name gedit -type d
Source:
General Command Manual FIND
Other example applying this command find ...
that end with the characters "test":
find /home/enduser/ -name "*test"
or that begin with the characters"ged":
find / -name "ged*"
Don´t forget to checkout privileges or permission level when you´re looking for files or directories, sometimes require a Super User.
Hope this helps.
answered Apr 14 at 16:44
GamalielGamaliel
313
313
add a comment |
add a comment |