ex_1.6

来自「《PC数据采集》源代码」· 6 代码 · 共 30 行

6
30
字号
#!/bin/csh -f# The Party Program--Invitations to friends from the "guest" file#set guestfile = ~/shell/guestsset guestfile = ./guestsif ( ! -e "$guestfile" ) then   echo "$guestfile:t non-existent"   exit 1endifsetenv PLACE "Sarotini's"@ Time = `date +%H` + 1set food = ( cheese crackers shrimp drinks "hot dogs" sandwiches )foreach person ( `cat $guestfile` )    if ( $person =~ root ) continue    mail -v -s "Party" $person << FINIS   # Start of here document    Hi ${person}! Please join me at $PLACE for a party!    Meet me at $Time o'clock.    I'll bring the ice cream. Would you please bring $food[1] and    anything else you would like to eat? Let me know if you can't    make it. Hope to see you soon.          Your pal,                ellie@`hostname` # or `uname -n`FINIS   shift food   if ( $#food ==  0 ) then      set food = ( cheese crackers shrimp drinks "hot dogs"      sandwiches )   endifend

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?