Whamcloud - gitweb
git://git.whamcloud.com
/
fs
/
lustre-release.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
LU-7323 test: Unknown symbol mb_cache_create (err 0)" on RHEL7
[fs/lustre-release.git]
/
lustre
/
tests
/
racer
/
file_chmod.sh
1
#!/bin/bash
2
trap 'kill $(jobs -p)' EXIT
3
4
DIR=$1
5
MAX=$2
6
7
while true; do
8
file=$DIR/$((RANDOM % MAX))
9
mode=$(printf '%o' $((RANDOM % 010000)))
10
chmod $mode $file 2> /dev/null
11
done