mirror of
https://github.com/yuzu-emu/breakpad
synced 2024-11-22 15:33:41 +00:00
798478c323
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@2 4c0a9323-5329-0410-9bdc-e9ce6186880e
8 lines
232 B
Bash
Executable file
8 lines
232 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright 2006 Google Inc. All rights reserved! Proprietary software!
|
|
# No guarantees or warranties! Not to be combined with any other offer!
|
|
|
|
words="bogus heinous obnoxious"
|
|
for word in $words ; do
|
|
echo $word
|
|
done
|