mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-12-23 05:15:34 +00:00
9 lines
232 B
Plaintext
9 lines
232 B
Plaintext
|
#!/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
|