File: make-infos

package info (click to toggle)
ale 0.9.0.3-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,260 kB
  • sloc: cpp: 21,826; sh: 10,106; xml: 4,129; ansic: 2,343; makefile: 565; perl: 454; exp: 319
file content (10 lines) | stat: -rwxr-xr-x 173 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl -w

while(<STDIN>) {
	chomp($texi_file = $_);
	s/[_[:space:]]+/_/g;
	s/^_*//g;
	s/_*.texi_*//g;
	`$ARGV[0] -o "$_.info" "$texi_file"`;
	`rm "$texi_file"`;
}