更新:ここでは、表形式の出力用のはるかに単純なスクリプト(質問の最後にあるスクリプト)を示します。あなたがするようにファイル名を渡すだけpaste
です...それはhtml
フレームを作るために使用するので、調整可能です。複数のスペースが保持され、Unicode文字が検出されたときに列の配置が保持されます。ただし、エディターまたはビューアーレンダラーがUnicodeをレンダリングする方法は、まったく別の問題です...
┌──────────────────────┬────────────────┬──────────┬────────────────────────────┐
│ Languages │ Minimal │ Chomsky │ Unrestricted │
├──────────────────────┼────────────────┼──────────┼────────────────────────────┤
│ Recursive │ Turing machine │ Finite │ space indented │
├──────────────────────┼────────────────┼──────────┼────────────────────────────┤
│ Regular │ Grammars │ │ ➀ unicode may render oddly │
├──────────────────────┼────────────────┼──────────┼────────────────────────────┤
│ 1 2 3 4 spaces │ │ Symbol-& │ but the column count is ok │
├──────────────────────┼────────────────┼──────────┼────────────────────────────┤
│ │ │ │ Context │
└──────────────────────┴────────────────┴──────────┴────────────────────────────┘
#!/bin/bash
{ echo -e "<html>\n<table border=1 cellpadding=0 cellspacing=0>"
paste "$@" |sed -re 's#(.*)#\x09\1\x09#' -e 's#\x09# </pre></td>\n<td><pre> #g' -e 's#^ </pre></td>#<tr>#' -e 's#\n<td><pre> $#\n</tr>#'
echo -e "</table>\n</html>"
} |w3m -dump -T 'text/html'
---
回答に示されているツールの概要(これまで)。
私はそれらをかなりよく見てきました。ここに私が見つけたものがあります:
paste
#このツールは、これまでに提示されたすべての回答に共通です#複数のファイルを処理できます。したがって、複数の列...いいね!#各列をタブで区切る...良い。#その出力は集計されません。
以下のすべてのツールはすべて、この区切り文字を削除します!...区切り文字が必要な場合は悪いです。
column
#それはタブ区切り文字を削除するので、フィールドの識別は純粋に列によって行われます。これは非常にうまく処理できるようです。.間違ったものは見当たりませんでした。
expand
#タブ設定は1つのみであるため、2列を超えると予測できません#Unicodeを処理する場合、列の配置は正確ではなく、タブ区切り文字が削除されるため、フィールドの識別は純粋に列の配置によって行われます
pr
#タブ設定は1つだけなので、2列を超えると予測できません。#ユニコードを処理する場合、列の配置は正確ではなく、タブ区切り文字が削除されるため、フィールドの識別は純粋に列の配置によって行われます
私にとって、column
それは、ワンライナーとしての明らかな最高のソルトンです..区切り文字、またはファイルのASCIIアートのタブレーションのいずれかが必要です。そうでなければ読み進めてくださいcolumns
。
これは、任意の数のファイルを取得し、ASCIIアートの表形式プレゼンテーションを作成するスクリプトです。上記のユーティリティの一部の場合のように、数字が間違っています。)...以下に示すスクリプトの出力は、F1 F2 F3 F4という名前の4つの入力ファイルからのものです。
+------------------------+-------------------+-------------------+--------------+
| Languages | Minimal automaton | Chomsky hierarchy | Grammars |
| Recursively enumerable | Turing machine | Type-0 | Unrestricted |
| Regular | Finite | — | |
| Alphabet | | Symbol | |
| | | | Context |
+------------------------+-------------------+-------------------+--------------+
#!/bin/bash
# Note: The next line is for testing purposes only!
set F1 F2 F3 F4 # Simulate commandline filename args $1 $2 etc...
p=' ' # The pad character
# Get line and column stats
cc=${#@}; lmax= # Count of columns (== input files)
for c in $(seq 1 $cc) ;do # Filenames from the commandline
F[$c]="${!c}"
wc=($(wc -l -L <${F[$c]})) # File length and width of longest line
l[$c]=${wc[0]} # File length (per file)
L[$c]=${wc[1]} # Longest line (per file)
((lmax<${l[$c]})) && lmax=${l[$c]} # Length of longest file
done
# Determine line-count deficits of shorter files
for c in $(seq 1 $cc) ;do
((${l[$c]}<lmax)) && D[$c]=$((lmax-${l[$c]})) || D[$c]=0
done
# Build '\n' strings to cater for short-file deficits
for c in $(seq 1 $cc) ;do
for n in $(seq 1 ${D[$c]}) ;do
N[$c]=${N[$c]}$'\n'
done
done
# Build the command to suit the number of input files
source=$(mktemp)
>"$source" echo 'paste \'
for c in $(seq 1 $cc) ;do
((${L[$c]}==0)) && e="x" || e=":a -e \"s/^.{0,$((${L[$c]}-1))}$/&$p/;ta\""
>>"$source" echo '<(sed -re '"$e"' <(cat "${F['$c']}"; echo -n "${N['$c']}")) \'
done
# include the ASCII-art Table framework
>>"$source" echo ' | sed -e "s/.*/| & |/" -e "s/\t/ | /g" \' # Add vertical frame lines
>>"$source" echo ' | sed -re "1 {h;s/[^|]/-/g;s/\|/+/g;p;g}" \' # Add top and botom frame lines
>>"$source" echo ' -e "$ {p;s/[^|]/-/g;s/\|/+/g}"'
>>"$source" echo
# Run the code
source "$source"
rm "$source"
exit
ここに私の元の答えがあります(上記のスクリプトの代わりに少しトリミングされています)
を使用wc
して列の幅を取得sed
し、表示されている文字で右パッドします.
(この例の場合のみ)...そしてpaste
、2つの列をTab文字で結合します...
paste <(sed -re :a -e 's/^.{1,'"$(($(wc -L <F1)-1))"'}$/&./;ta' F1) F2
# output (No trailing whitespace)
Languages............. Minimal automaton
Recursively enumerable Turing machine
Regular............... Finite
正しい列を埋めたい場合:
paste <( sed -re :a -e 's/^.{1,'"$(($(wc -L <F1)-1))"'}$/&./;ta' F1 ) \
<( sed -re :a -e 's/^.{1,'"$(($(wc -L <F2)-1))"'}$/&./;ta' F2 )
# output (With trailing whitespace)
Languages............. Minimal automaton
Recursively enumerable Turing machine...
Regular............... Finite...........