




(view source code of 2ascii.ps as plain text)
# Convert any text file to ASCIIparam( [string] $infile = $(throw "Please specify a filename.") )
$outfile = "$infile.ascii"
get-content -path $infile | out-file $outfile -encoding ascii
page last modified: 2025-10-11; loaded in 0.0076 seconds