updating error log script
This commit is contained in:
parent
f94719ad1b
commit
1f3d83442b
|
@ -1,5 +1,9 @@
|
|||
#!/bin/bash
|
||||
|
||||
echo "Current working dir is $(pwd)"
|
||||
|
||||
ls
|
||||
|
||||
for log_file in hs_err_*.log; do
|
||||
echo "Error log ${log_file}:"
|
||||
cat ${log_file}
|
||||
|
|
Loading…
Reference in New Issue