radare2/sys/indent-whitelist.sh

82 lines
1.2 KiB
Bash
Raw Normal View History

#!/bin/sh
FILES="
libr/util/base64.c
libr/util/name.c
libr/util/idpool.c
libr/util/stack.c
libr/util/slist.c
libr/util/log.c
libr/util/cache.c
libr/util/print.c
libr/asm/p/asm_bf.c
2017-02-27 07:40:25 +08:00
libr/hash/calc.c
libr/hash/crc16.c
libr/hash/luhn.c
libr/hash/xxhash.c
libr/hash/md4.c
libr/hash/adler32.c
libr/hash/hash.c
libr/hash/sha2.c
libr/reg/reg.c
libr/reg/arena.c
libr/reg/double.c
libr/reg/cond.c
libr/reg/value.c
libr/reg/profile.c
2015-12-09 07:41:44 +08:00
libr/include/r_list.h
libr/include/r_reg.h
libr/include/r_util.h
libr/anal/cycles.c
libr/anal/esil.c
libr/anal/data.c
libr/anal/p/anal_arc.c
2015-12-09 07:41:44 +08:00
libr/config/config.c
libr/config/callback.c
libr/config/t/test.c
2015-12-09 07:41:44 +08:00
libr/fs/fs.c
libr/fs/file.c
2015-12-09 06:55:23 +08:00
libr/bin/bin.c
libr/bin/bin_write.c
libr/bin/dbginfo.c
libr/bin/filter.c
libr/bin/format/objc/mach0_classes.c
libr/cons/hud.c
libr/cons/2048.c
2016-01-07 19:04:26 +08:00
libr/cons/utf8.c
libr/cons/line.c
libr/cons/canvas.c
2015-12-08 20:24:21 +08:00
libr/cons/editor.c
2016-01-07 19:04:26 +08:00
libr/core/file.c
libr/core/yank.c
libr/core/blaze.c
binr/radare2/radare2.c
binr/rabin2/rabin2.c
2016-03-30 22:26:46 +08:00
binr/rasm2/rasm2.c
binr/rax2/rax2.c
"
case "$1" in
2015-12-09 06:55:23 +08:00
"help"|-h)
echo "Usage. sys/indent-whitelist.sh [commit] [apply]"
;;
"commit")
sys/indent.sh -i ${FILES}
git commit sys/indent* ${FILES}
;;
"apply")
sys/indent.sh -i ${FILES}
;;
*)
sys/indent.sh -u ${FILES}
esac