⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 readme.col

📁 Util-linux 软件包包含许多工具。其中比较重要的是加载、卸载、格式化、分区和管理硬盘驱动器
💻 COL
字号:
#	@(#)README	5.1 (Berkeley) 5/22/90col - filter out reverse line feeds.Options are:	-b	do not print any backspaces (last character written is printed)	-f	allow half line feeds in output, by default characters between		lines are pushed to the line below	-x	do not compress spaces into tabs.	-l num	keep (at least) num lines in memory, 128 are kept by defaultIn the 32V source code to col(1) the default behavior was to NOT compressspaces into tabs.  There was a -h option which caused it to compress spacesinto tabs.  There was no -x flag.The 32V documentation, however, was consistent with the SVID (actually, V7at the time) and documented a -x flag (as defined above) while making nomention of a -h flag.  Just before 4.3BSD went out, CSRG updated the manualpage to reflect the way the code worked.  Suspecting that this was probablythe wrong way to go, this version adopts the SVID defaults, and no longerdocuments the -h option.The S5 -p flag is not supported because it isn't clear what it does (lookslike a kludge introduced for a particular printer).Known differences between AT&T's col and this one (# is delimiter):	Input			AT&T col		this col	#\nabc\E7def\n#		#   def\nabc\r#		#   def\nabc\n#	#a#			##			#a\n#		- last line always ends with at least one \n (or \E9)	#1234567 8\n#		#1234567\t8\n#		#1234567 8\n#		- single space not expanded to tab     -f #a\E8b\n#		#ab\n#			# b\E9\ra\n#		- can back up past first line (as far as you want) so you		  *can* have a super script on the first line	#\E9_\ba\E8\nb\n#	#\n_\bb\ba\n#		#\n_\ba\bb\n#		- always print last character written to a position,		  AT&T col claims to do this but doesn't.If a character is to be placed on a line that has been flushed, a warningis produced (the AT&T col is silent).   The -l flag (not in AT&T col) canbe used to increase the number of lines buffered to avoid the problem.General algorithm: a limited number of lines are buffered in a linkedlist.  When a printable character is read, it is put in the buffer ofthe current line along with the column it's supposed to be in.  Whena line is flushed, the characters in the line are sorted according tocolumn and then printed.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -