1行のシェルは、単語のすべての文字の組み合わせを出力します。

1行のシェルは、単語のすべての文字の組み合わせを出力します。

私にはこんな言葉があります。

fath

単語のすべての文字の組み合わせを出力します。例:

f
fa
fat
fath
ft
fth
fh

答え1

編集する:

一行のawk解決策は次のとおりです。

echo f a t h | awk '{for(i=0;i<2^NF;i++) { for(j=0;j<NF;j++) {if(and(i,(2^j))) printf "%s",$(j+1)} print ""}}'

出力


f
a
fa
t
ft
at
fat
h
fh
ah
fah
th
fth
ath
fath

(この電源セット実装の修正バージョンhttps://stackoverflow.com/questions/40966428/awk-power-set-implementation)

答え2

大きな打撃:

combos () {
    local word=$1
    local len=${#word}
    local first=${word:0:1}
    echo "$first"
    for ((i=1; i < len; i++ )); do
        for ((j=1; i+j <= len; j++ )); do
            echo "$first${word:i:j}"
        done
    done
}

それから

$ combos fath
f
fa
fat
fath
ft
fth
fh

関連情報