Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はプログラムを持っています:
#!/bin/awk -f BEGIN { } { print "hello" } END { }
hello を出力し、Enter キーが押されるのを待ってから、再度 hello を出力します。エンターを求めずに無限にしたい。コメントしてください!
@SiegeXに同意
yes | awk '{ print "hello" }'
#!/bin/awk -f BEGIN{ while(1) print "hello" }