diff options
Diffstat (limited to 'content/notes/mass-set-permission.md')
| -rw-r--r-- | content/notes/mass-set-permission.md | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/content/notes/mass-set-permission.md b/content/notes/mass-set-permission.md deleted file mode 100644 index 36cf87c..0000000 --- a/content/notes/mass-set-permission.md +++ /dev/null | |||
| @@ -1,16 +0,0 @@ | |||
| 1 | --- | ||
| 2 | title: Change permissions of matching files recursively | ||
| 3 | url: mass-set-permission.html | ||
| 4 | date: 2023-05-16T12:00:00+02:00 | ||
| 5 | type: notes | ||
| 6 | draft: false | ||
| 7 | tags: [linux] | ||
| 8 | --- | ||
| 9 | |||
| 10 | Replace `*.xml` with your pattern. This will remove executable bit from all | ||
| 11 | files matching the pattern. Change `+` to `-` to add executable bit. | ||
| 12 | |||
| 13 | ```sh | ||
| 14 | find . -type f -name "*.xml" -exec chmod -x {} + | ||
| 15 | ``` | ||
| 16 | |||
