mirror of
https://github.com/tcsenpai/mysides.git
synced 2025-06-02 17:20:05 +00:00
12 lines
334 B
Bash
Executable File
12 lines
334 B
Bash
Executable File
#!/bin/bash
|
|
DSTRING=$(date +%F)
|
|
# first, strip underscores
|
|
CLEAN=${DSTRING//_/}
|
|
# next, replace spaces with underscores
|
|
CLEAN=${CLEAN// /_}
|
|
# now, clean out anything that's not alphanumeric or an underscore
|
|
CLEAN=${CLEAN//[^a-zA-Z0-9_]/}
|
|
# finally, lowercase with TR
|
|
CLEAN=`echo -n $CLEAN | tr A-Z a-z`
|
|
cp ap.html archive/$CLEAN.html
|