Guest User

Untitled

a guest
Jun 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
  3. "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  4. <plist version="1.0">
  5. <dict>
  6. <key>Label</key>
  7. <string>boot-script</string>
  8.  
  9. <key>ProgramArguments</key>
  10. <array>
  11. <string>/usr/local/bin/boot.sh</string>
  12. </array>
  13.  
  14. <key>RunAtLoad</key>
  15. <true/>
  16.  
  17. </dict>
  18. </plist>
  19.  
  20. #!/bin/bash
  21.  
  22. function startup(){
  23.  
  24. cd /Users/FooUser/Desktop
  25. touch FooFile
  26. }
  27.  
  28. startup;
Add Comment
Please, Sign In to add comment