web-dev-qa-db-ja.com

シェルはもっと「攻撃的」でしょうか?

私のGentooLinuxは、 offensive USE flag を有効にしてコンパイルされています。

_# Sudo su -
Password: 
Hold it up to the light --- not a brain in sight!
Password: 
_

攻撃の程度に基づいて fortunes を選択することも可能です:

_# fortune -o kernelcookies | cowsay -b
 _________________________________________ 
/ /* This is total bullshit: */           \
|                                         |
\ linux-2.6.6/drivers/video/sis/init301.c /
 ----------------------------------------- 
        \   ^__^
         \  (==)\_______
            (__)\       )\/\
                ||----w |
                ||     ||
_

フレーバーアイテムのリストを検討する1 リンクで提供されているものは短いです-そして私は個人的に分子動力学シミュレーションパッケージを使用していません-Linux一般(またはUNIX)のシェル


1- cowsay は、運命だけでなく、コマンドやスクリプトの出力など、任意の引数を出力できることを覚えておいてください:cowsay -s $(script_in_path_or_command)。注-sは、ここでの牛の外観のためだけのものです。マンページを参照してください。

10
user44370

わかりました。PS1command_not_found_handleを使用すると、bashで侮辱される可能性があります。

anthony@Watt:~$ . /tmp/insult.sh 
anthony@Watt:~$ sl
bash: sl: command not found, incompetent spoony bard
anthony@Watt:~$ ls /wrong/path
ls: cannot access /wrong/path: No such file or directory
Learn to type, second-rate Horrified Heron.
anthony@Watt:~$ 

そして、これが私が上で調達した/tmp/insult.shです。

### Data ###
bash_insulter_sentences=(
    'Have you considered Windows, %s?\n'
    'Learn to type, %s.\n'
    'Fell asleep at the keyboard again, %s?\n'
    "Failure is common when you're a %s, isn't it?\n"
)

bash_insulter_subjects=(
    'spoony bard'           # we all played this, right?
    'extra-Warty Warthog'
    'Dazed Drake'
    'Fidgety Fawn'
    'Horrified Heron'       # etc.
)

bash_insulter_adjectives=(
    'incompetent ' # these have built-in spacing
    'inept '
    'second-rate '
    '' # chance of none
    ''
)

### Functions to generate insults ###
bash_insulter_random_element() {
    if [ ${BASH_VERSINFO[0]} -lt 4 ] || \
        [ ${BASH_VERSINFO[0]} -eq 4 -a ${BASH_VERSINFO[1]} -lt 3 ]; then
        # bash before 4.3 doesn't have -n
        eval "local var=(\"\${$1[@]}\")"
    else
        local -n var="$1"
    fi
    local len=${#var[@]}
    echo -n "${var[$RANDOM % len]}" # Slightly biased. Don't care.
}

bash_insulter_full_subject() {
    bash_insulter_random_element bash_insulter_adjectives
    bash_insulter_random_element bash_insulter_subjects
}

bash_insulter_do_insult() {
    printf "$(bash_insulter_random_element bash_insulter_sentences)" "$(bash_insulter_full_subject)"
}

### set up ###
command_not_found_handle() {
    echo "bash: $1: command not found, $(bash_insulter_full_subject)"
    return 127
}

PS1='`
    if [ 0 -ne $? -a 127 -ne $? ]; then
        bash_insulter_do_insult
    fi
    echo "\u@\h:\w\$ "; 
`'
9
derobert

誰かが言及しました sl 。最大の予測可能性を目指すインタプリタのようなソフトウェアでは、サプライズは確かに文脈上「不快な」ものと見なされます。マニュアルには、適切なオプションも記載されています。

DESCRIPTION
   sl  is a highly advanced animation program for curing your bad habit of
   mistyping.

   -a     An accident is occurring. People cry for help.

   -l     Little version

   -F     It flies like the galaxy express 999.

   -c     C51 appears instead of D51.

...そして興味深いバグ

BUGS
   It sometimes list directory contents.
2
user44370