Jump to content

Hello guys i want this post to be a good place to ask question about linux so plz follow the post to see everything.

 

i will start the post whit one of my question so : how can i search just for directory that starting whit a R or r?

 

thanks guys :D ( sorry poor english im french )

Link to comment
https://linustechtips.com/topic/451503-all-linux-problem/
Share on other sites

Link to post
Share on other sites

to big for me to read but i will try to read it fast thanks

if you want to get into linux, get used to reading, because you'll need manuals at some point.

(you can skip trough most of it, just give it a quick "read" to find the parts you need)

Link to comment
https://linustechtips.com/topic/451503-all-linux-problem/#findComment-6053686
Share on other sites

Link to post
Share on other sites

if you want to get into linux, get used to reading, because you'll need manuals at some point.

(you can skip trough most of it, just give it a quick "read" to find the parts you need)

yes but i don't have the time to read 20 page for every command ( i got 2 week to learn at the best linux )

Link to comment
https://linustechtips.com/topic/451503-all-linux-problem/#findComment-6053789
Share on other sites

Link to post
Share on other sites

yes but i don't have the time to read 20 page for every command ( i got 2 week to learn at the best linux )

then i'd suggest scraping up on your "skimming" skills.

 

once you know where to look, you can skim trough a MAN page in under a minute to get the exact parts of the command you need. (and maybe find some stuff you didnt think you'd need)

Link to comment
https://linustechtips.com/topic/451503-all-linux-problem/#findComment-6053823
Share on other sites

Link to post
Share on other sites

then i'd suggest scraping up on your "skimming" skills.

 

once you know where to look, you can skim trough a MAN page in under a minute to get the exact parts of the command you need. (and maybe find some stuff you didnt think you'd need)

ok thanks for the tip :D 

Link to comment
https://linustechtips.com/topic/451503-all-linux-problem/#findComment-6053910
Share on other sites

Link to post
Share on other sites

yes but i don't have the time to read 20 page for every command ( i got 2 week to learn at the best linux )

 

You're not going to master Linux is 2 weeks I'm afraid... Anyway:

find / -type d -name "R*" && find / -type d -name "r*" | less

or

find / -type d -regex .*/[rR].* | less
Link to comment
https://linustechtips.com/topic/451503-all-linux-problem/#findComment-6053929
Share on other sites

Link to post
Share on other sites

 

You're not going to master Linux is 2 weeks I'm afraid... Anyway:

find / -type d -name "R*" && find / -type d -name "r*" | less

or

find / -type d -regex .*/[rR].* | less

but all that search a directory in where im or every where ? if im right is everywhere?

Link to comment
https://linustechtips.com/topic/451503-all-linux-problem/#findComment-6054088
Share on other sites

Link to post
Share on other sites

Guest
This topic is now closed to further replies.

×