9 lines
86 B
Bash
Executable File
9 lines
86 B
Bash
Executable File
#!/bin/bash
|
|
|
|
log_file='test.log'
|
|
|
|
echo $log_file
|
|
|
|
|
|
echo "this is a test of $log_file"
|