หากคุณกำลังถามวิธีพิมพ์อักขระหนึ่งตัวบนหน้าจอในแต่ละครั้ง (สไตล์ 'แฮ็กเกอร์' ที่แสดงโดยทั่วไปในภาพยนตร์ฮอลลีวูด) สคริปต์ต่อไปนี้น่าจะพอเพียง (ใช้อินพุตจากstdin
)
ในbash
:
#!/bin/bash
while IFS= read -r line; do
length="${#line}"
bol=1
for (( offset = 0 ; offset < length ; offset++ )); do
char="${line:offset:1}"
printf '%s' "$char"
if (( bol )) && [[ "$char" == " " ]]; then
continue
fi
bol=0
sleep 0.05
done
if (( length == 0 )); then
sleep 0.$(( RANDOM % 3 + 2 ))
else
sleep 0.$(( RANDOM % 7 + 3 ))
fi
printf '\n'
done
หรือเวอร์ชันที่ง่ายกว่าใน C:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main(void) {
char buf[1];
int len;
while ((len = read(STDIN_FILENO, buf, sizeof(buf))) > 0) {
if (write(STDOUT_FILENO, buf, len) != len) {
perror("write");
return EXIT_FAILURE;
}
usleep(50000);
}
if (len != 0) {
perror("read");
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
หากคุณต้องการใช้dmesg
เป็นอินพุตตัวอย่างเช่น:
dmesg | hollywood
./configure && make