由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - Print out Line Number using lp ???
相关主题
how to let awk not print?批量替换
How to print landscapely(vs. Portrait) in Wordperfect?help on extract email address from txt file
Line wrap when printing双面打印
how to get rid of the ^M in files?how to print the last 2 columns of a text file?
打印问题Help about printing through network!
"cal" in unix can print the calendar of this month,How to reate landscape pdf file from ps file
How to delete every other line in a file?Re: 为什么emacs自动给我加^M.
Help please: 2GB limit on file sizeRe: Where to download MP3 player for UNIX?
相关话题的讨论汇总
话题: print话题: line话题: number话题: urfile话题: newfile
进入Unix版参与讨论
1 (共1页)
z**g
发帖数: 3
1
anyone know:
How to print a txt file with line number on it ?
and how to set the page setup to "Landscape" or
"Portrait" ??
TX
zorg
h******a
发帖数: 198
2
1st qestion:
awk '{print NR,$0}' urfile > newfile
or awk '{printf("%-5d%s\n",NR,$0)}' urfile >newfile (better looking)
or grep -n "" urfile > newfile
2 question:
when you print file, you could setup print configuration.

【在 z**g 的大作中提到】
: anyone know:
: How to print a txt file with line number on it ?
: and how to set the page setup to "Landscape" or
: "Portrait" ??
: TX
: zorg

B**z
发帖数: 153
3
1)
easier way
nl urfile |lp

【在 h******a 的大作中提到】
: 1st qestion:
: awk '{print NR,$0}' urfile > newfile
: or awk '{printf("%-5d%s\n",NR,$0)}' urfile >newfile (better looking)
: or grep -n "" urfile > newfile
: 2 question:
: when you print file, you could setup print configuration.

B**z
发帖数: 153
4
2) didn't find a standard UNIX command for this
try pclf or enscript
if they are installed in your UNIX.

【在 B**z 的大作中提到】
: 1)
: easier way
: nl urfile |lp

1 (共1页)
进入Unix版参与讨论
相关主题
Re: Where to download MP3 player for UNIX?打印问题
Re: unix下怎么把一个大文件分成若干个小文件?"cal" in unix can print the calendar of this month,
怎样写 makefileHow to delete every other line in a file?
一个计算机学术网站Help please: 2GB limit on file size
how to let awk not print?批量替换
How to print landscapely(vs. Portrait) in Wordperfect?help on extract email address from txt file
Line wrap when printing双面打印
how to get rid of the ^M in files?how to print the last 2 columns of a text file?
相关话题的讨论汇总
话题: print话题: line话题: number话题: urfile话题: newfile