Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 216.73.216.39
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
util-linux /
Delete
Unzip
Name
Size
Permission
Date
Action
examples
[ DIR ]
drwxr-xr-x
2024-04-12 06:54
releases
[ DIR ]
drwxr-xr-x
2024-04-12 06:54
00-about-docs.txt
260
B
-rw-r--r--
2021-02-02 15:41
AUTHORS.gz
14.76
KB
-rw-r--r--
2021-08-16 13:16
NEWS.Debian.gz
1.85
KB
-rw-r--r--
2022-02-20 23:13
PAM-configuration.txt
671
B
-rw-r--r--
2021-02-02 15:41
README.Debian
481
B
-rw-r--r--
2022-02-20 23:13
blkid.txt
3.18
KB
-rw-r--r--
2021-02-02 15:41
cal.txt
2.21
KB
-rw-r--r--
2021-05-06 10:55
changelog.Debian.gz
2.44
KB
-rw-r--r--
2024-04-09 15:32
col.txt
1.87
KB
-rw-r--r--
2021-02-02 15:41
copyright
22.5
KB
-rw-r--r--
2022-02-20 23:13
deprecated.txt
3.01
KB
-rw-r--r--
2021-05-06 10:55
getopt.txt
992
B
-rw-r--r--
2021-02-02 15:41
getopt_changelog.txt
1.88
KB
-rw-r--r--
2021-05-06 10:55
howto-build-sys.txt
3.12
KB
-rw-r--r--
2021-02-02 15:41
howto-compilation.txt
2.88
KB
-rw-r--r--
2021-05-06 10:55
howto-contribute.txt.gz
3.36
KB
-rw-r--r--
2021-05-06 10:55
howto-debug.txt
2.38
KB
-rw-r--r--
2021-02-02 15:41
howto-man-page.txt
126
B
-rw-r--r--
2021-05-06 10:55
howto-pull-request.txt.gz
4.16
KB
-rw-r--r--
2021-05-06 10:55
howto-tests.txt.gz
1.67
KB
-rw-r--r--
2021-05-06 10:55
howto-usage-function.txt.gz
2.27
KB
-rw-r--r--
2021-02-02 15:41
hwclock.txt
147
B
-rw-r--r--
2021-05-06 10:55
modems-with-agetty.txt
2.55
KB
-rw-r--r--
2021-05-06 10:55
mount.txt
521
B
-rw-r--r--
2021-05-06 10:55
parse-date.txt.gz
7.93
KB
-rw-r--r--
2021-02-02 15:41
pg.txt
448
B
-rw-r--r--
2021-02-02 15:41
poeigl.txt.gz
8.66
KB
-rw-r--r--
2021-05-06 10:55
release-schedule.txt
1.32
KB
-rw-r--r--
2021-05-06 10:55
Save
Rename
# @(#)README 5.1 (Berkeley) 5/22/90 col - filter out reverse line feeds. In the 32V source code to col(1) the default behavior was to NOT compress spaces into tabs. There was a -h option which caused it to compress spaces into tabs. There was no -x flag. The 32V documentation, however, was consistent with the SVID (actually, V7 at the time) and documented a -x flag (as defined above) while making no mention of a -h flag. Just before 4.3BSD went out, CSRG updated the manual page to reflect the way the code worked. Suspecting that this was probably the wrong way to go, this version adopts the SVID defaults, and no longer documents the -h option. The S5 -p flag is not supported because it isn't clear what it does (looks like 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 warning is produced (the AT&T col is silent). The -l flag (not in AT&T col) can be used to increase the number of lines buffered to avoid the problem. General algorithm: a limited number of lines are buffered in a linked list. When a printable character is read, it is put in the buffer of the current line along with the column it's supposed to be in. When a line is flushed, the characters in the line are sorted according to column and then printed.