mirror of https://github.com/fengyuhetao/shell.git
6 lines
114 B
Bash
6 lines
114 B
Bash
|
#!/bin/bash
|
||
|
#copy the /usr/bin directory listing to a log file
|
||
|
|
||
|
today=`date +%y%m%d`
|
||
|
ls /usr/bin -al > log.$today
|