使用 shell 脚本查找函数参数的数据类型 - 文本处理

发布于 2024-12-10 12:21:29 字数 156 浏览 2 评论 0原文

我有一个带有如下函数签名的文件:

void Something(float a, int b, char c);

使用 shell 脚本或类似的文件,您将如何处理它,以便最终得到:

浮点整型字符

I have a file with function signatures like this:

void something(float a, int b, char c);

Using shell scripts or similar how would you process this, so as to end up with:

float int char

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木森分化 2024-12-17 12:21:29

这行得通吗?我必须使用 IFS 变量和一些 for 循环做一些练习,但它似乎对我来说工作得很好。如果某些“void”行具有前导空格或制表符,则您必须调整 sed 表达式...

test.txt

void something(float a, int b, char c);
void something_else(string s, int p);
void test(float test);
void tata(string k);
void foobar(float a, int l, char e);

test.sh

#!/bin/bash
filename=$1
OLD_IFS=$IFS
IFS=

结果:

$ ./test.sh test.txt
char float int string
\n' trap "rm -f $.tmp" EXIT SIGHUP for line in $(egrep -i "^void\ " $filename | sed -e 's/^void \w*(\(.*\));/\1/'); do IFS=, for s in $line; do echo $s | awk '{print $1}' >> $.tmp done IFS=

结果:


\n'
done
IFS=$OLD_IFS
sort $.tmp | uniq | tr "\n" " "
echo
exit 0

结果:

Would this work? I had to do a bit of gymnastics with the IFS variable and some for loops, but it seems to work fine for me. If some of the "void" lines have leading spaces or tabs, you'll have to adjust the sed expression however...

test.txt

void something(float a, int b, char c);
void something_else(string s, int p);
void test(float test);
void tata(string k);
void foobar(float a, int l, char e);

test.sh

#!/bin/bash
filename=$1
OLD_IFS=$IFS
IFS=

Result:

$ ./test.sh test.txt
char float int string
\n' trap "rm -f $.tmp" EXIT SIGHUP for line in $(egrep -i "^void\ " $filename | sed -e 's/^void \w*(\(.*\));/\1/'); do IFS=, for s in $line; do echo $s | awk '{print $1}' >> $.tmp done IFS=

Result:


\n'
done
IFS=$OLD_IFS
sort $.tmp | uniq | tr "\n" " "
echo
exit 0

Result:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文