This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -w | |
# | |
# Clean a text file -- or directory of text files -- of stealth whitespace. | |
# WARNING: this can be a highly destructive operation. Use with caution. | |
# | |
use bytes; | |
use File::Basename; | |
# Default options |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh - | |
## | |
## Modified to handle -vpath <path> option by Michael Graff, ISC. | |
## The purpose of this is to allow this script to run outside of the | |
## source directory, for instance when running configure with | |
## ../bind9-mainline/configure | |
## and still have "make depend" work. | |
## |