File Manager

Current Path : /usr/src/linux-headers-5.15.0-91/tools/perf/trace/beauty/
Upload File :
Current File : //usr/src/linux-headers-5.15.0-91/tools/perf/trace/beauty/rename_flags.sh

#!/bin/sh
# Copyright (C) 2018, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com>
# SPDX-License-Identifier: LGPL-2.1

[ $# -eq 1 ] && header_dir=$1 || header_dir=tools/include/uapi/linux/

fs_header=${header_dir}/fs.h

printf "static const char *rename_flags[] = {\n"
regex='^[[:space:]]*#[[:space:]]*define[[:space:]]+RENAME_([[:alnum:]_]+)[[:space:]]+\(1[[:space:]]*<<[[:space:]]*([[:xdigit:]]+)[[:space:]]*\)[[:space:]]*.*'
egrep -q $regex ${fs_header} && \
(egrep $regex ${fs_header} | \
	sed -r "s/$regex/\2 \1/g"	| \
	xargs printf "\t[%d + 1] = \"%s\",\n")
printf "};\n"

File Manager Version 1.0, Coded By Lucas
Email: hehe@yahoo.com