kfork.dtclients 867 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #!/bin/ksh
  2. #
  3. # Shell script to use kfork to kill all the desktop clients prior to
  4. # a clean install of new bits.
  5. #
  6. # Author: Jerrie Andreas 10/5/93
  7. #
  8. # Usage: No parameters, called from updateDT
  9. PS_ALL_FLAG=-e
  10. export PS_ALL_FLAG
  11. TOOL_DIR=/x/cdesrc/admin/IntegTools/updateTools
  12. export TOOL_DIR
  13. die_time=3
  14. files="
  15. dtaction
  16. dtappgather
  17. dtappintegrate
  18. dtcalc
  19. dtcm
  20. dtcopy
  21. dtcreate
  22. dterror
  23. dtexec
  24. dtfile
  25. dtgreet
  26. dthello
  27. dthelpgen
  28. dthelptag
  29. dthelpview
  30. dticon
  31. dtksh
  32. dtlogin
  33. dtlpsetup
  34. dtmail
  35. dtmailconv
  36. dtpad
  37. dtprintegrate
  38. dtqueueinfo
  39. dtrc
  40. dtscreen
  41. dtsearchpath
  42. dtsession
  43. dtspcd
  44. dtstyle
  45. dtterm
  46. dtwm
  47. htag1
  48. htag2
  49. inetd
  50. list_queue_jobs
  51. list_queues
  52. rpc.cmsd
  53. rpc.ttdbserverd
  54. tt_type_comp
  55. ttcp
  56. ttdbck
  57. ttmv
  58. ttrm
  59. ttsession
  60. ttsnoop
  61. tttar
  62. tttrace
  63. uil
  64. "
  65. for file in $files
  66. do
  67. $TOOL_DIR/kfork $file $die_time
  68. done