Change indentation to follow the updated standard.
Alot of mixed indentation. use 4 chars wide soft tabs.
This commit is contained in:
parent
9cc5420447
commit
f46ae1970b
51 changed files with 634 additions and 639 deletions
|
|
@ -3,8 +3,8 @@
|
|||
# Helper for touching a number of files in a directory.
|
||||
|
||||
if [ $# -lt 1 ]; then
|
||||
echo "usage: $0 <dir> [ <nfiles> ]"
|
||||
exit 1
|
||||
echo "usage: $0 <dir> [ <nfiles> ]"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -d $1 ]; then
|
||||
|
|
@ -23,5 +23,5 @@ if [ $# -gt 1 ]; then
|
|||
fi
|
||||
|
||||
for i in `seq 0 ${NFILES}`; do
|
||||
touch "${1}/file${i}"
|
||||
touch "${1}/file${i}"
|
||||
done
|
||||
|
|
|
|||
Reference in a new issue