Ubuntu Pastebin

Paste from cpfilelist at Fri, 13 Feb 2015 15:48:05 +0000

Download as text
1
2
3
4
5
6
root@Liy:~# cat cp.sh
#!/bin/bash
rmdir /root/cpfile
mkdir /root/cpfile
filelist={find / | grep 'xls'}
cp  {$filelist} /root/cpfile
Download as text