Tagged Questions
0
votes
2answers
31 views
Recursively list full absolute path of files with permissions in Linux
I have done a bit of searching online, and I am trying to find a way to recursively list all files with their absolute path and with their permissions. I want to do this so that I can grep out what I ...
5
votes
1answer
7k views
ls | grep | rm — How to format this command?
I'm trying to delete a bunch of files in a certain directory (on Mac OS X using Terminal)
ls | grep \([1-9]\) | xargs rm
should do the trick, but it doesn't. I'm trying to delete any file with a ...
0
votes
6answers
3k views
Linux: list contents of sub directories with given name?
I'm using linux to analyze a windows directory structure. The structure is:
/Documents and settings
/username1
/My Documents
...
/username2
/My Documents
...
...
What command ...