fixed error printing script

This commit is contained in:
Mariotaku Lee 2017-03-04 21:51:04 +08:00
parent aeb0f57c0c
commit 274b06f51b
No known key found for this signature in database
GPG Key ID: 15C10F89D7C33535
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
for log_file in 'hs_err_*.log'; do
for log_file in hs_err_*.log; do
echo "Error log ${log_file}:"
cat ${log_file}
done