Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
Is there a way to find all files that belong to a range of specific gid ( like < 1000 ) on all my NFS share ?
Because i need to change the gid of all groups < 1000 to groups > 1000
Solved! See The Solution
1 ACCEPTED SOLUTION
prachana has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Assuming you have mounted all exports on clients
find /mnt -group 0 -o -group 1 -o -group 2 -o ... -o -group 999 > files.txt
1 REPLY 1
prachana has accepted the solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Assuming you have mounted all exports on clients
find /mnt -group 0 -o -group 1 -o -group 2 -o ... -o -group 999 > files.txt
