6 lines
72 B
Plaintext
6 lines
72 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
while read l; do mv $l $1; done <./list
|
||
|
|
||
|
rm ./list
|