4 lines
90 B
Bash
4 lines
90 B
Bash
|
#!/bin/bash
|
||
|
timestamp=`date +%Y/%m/%d-%H:%M:%S`
|
||
|
echo "System path is $PATH at $timestamp"
|