文件操作 - profile2linkerlist.pl
返回文件管理
返回主菜单
删除本文件
文件: /usr/src/linux-headers-5.15.0-186/scripts/profile2linkerlist.pl
编辑文件内容
#!/usr/bin/env perl # SPDX-License-Identifier: GPL-2.0 # # Takes a (sorted) output of readprofile and turns it into a list suitable for # linker scripts # # usage: # readprofile | sort -rn | perl profile2linkerlist.pl > functionlist # use strict; while (<>) { my $line = $_; $_ =~ /\W*[0-9]+\W*([a-zA-Z\_0-9]+)\W*[0-9]+/; print "*(.text.$1)\n" unless ($line =~ /unknown/) || ($line =~ /total/); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件