Hi Monks,
Monks i try to writy a file as a binary
the file should contains a binary values corresponding to character values
i tried the following code
but it is not working
please help me
#!/usr/bin/perl
open FILE, ">123.txt" or die $!;
print pack("b*","a","b","c") or die $!;
close FILE;