Search Results

Search: Posts Made By: sam05121988
3,025
Posted By sam05121988
$line = "whatever your want to print" printf...
$line = "whatever your want to print"
printf "$line" | perl -ne ' @x = split("",$_); print "$_\n" foreach(@x); '
3,025
Posted By sam05121988
just type perl -v on your command line if...
just type
perl -v
on your command line
if it gives output like this, you are good to use the command line provided by me in the other comment

perl -v

This is perl, v5.10.1 (*) built for...
3,025
Posted By sam05121988
if it's ok to use perl $ printf "abc def ...
if it's ok to use perl

$ printf "abc def ghi" | perl -ne ' @x = split("",$_); print "$_\n" foreach(@x); '
a
b
c

d
e
f




g
h
i
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 04:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy