8 lines
92 B
Bash
8 lines
92 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [ ! -d "backup" ]; then
|
|
mkdir backup
|
|
fi
|
|
|
|
mv jx-print.*~ backup/
|