1 2 3 |
for file in `ls|grep -E "^Faktura_nr"`; do
mv "$file" "human_content_$file"
done
|
Pastie
Support Pastie
or read my
Pastie << self
blog
1 2 3 |
for file in `ls|grep -E "^Faktura_nr"`; do
mv "$file" "human_content_$file"
done
|