How to find /usr/bin/gedit? [duplicate]
.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
New contributor
marked as duplicate by karel, Kulfy, Eric Carvalho, WinEunuuchs2Unix, Fabby 7 hours ago
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
New contributor
marked as duplicate by karel, Kulfy, Eric Carvalho, WinEunuuchs2Unix, Fabby 7 hours ago
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
New contributor
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
New contributor
New contributor
New contributor
asked 15 hours ago
Nigel NgNigel Ng
1
1
New contributor
New contributor
marked as duplicate by karel, Kulfy, Eric Carvalho, WinEunuuchs2Unix, Fabby 7 hours ago
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 7 hours ago
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 15 hours ago
MikeMike
2,88682250
2,88682250
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 13 hours ago
GamalielGamaliel
312
312
add a comment |
add a comment |