쉘이 좀 더 "공격적"일 수 있습니까?

쉘이 좀 더 "공격적"일 수 있습니까?

내 거루트 다이어그램리눅스가 사용된다공격사용배너할 수 있게 하다:

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

당신은 또한 선택할 수 있습니다재산공격성 수준에 따라:

# 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는 여기서 소의 모양에만 적용됩니다. 맨페이지를 참조하세요.

답변1

PS1글쎄, bash는 다음 을 사용하여 command_not_found_handle당신을 모욕할 수 있습니다 :

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\$ "; 
`'

답변2

누군가 언급함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.

관련 정보