This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
months=(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec) | |
monthNums='01 02 03 04 05 06 07 08 09 10 11 12' | |
echo $monthNums | xargs mkdir | |
i=0 | |
for monthNum in $monthNums | |
do | |
ls -l $1 | grep ${months[$i]} | awk '{print $NF}' | xargs -I {} mv {} ./$monthNum |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
months='Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec' | |
echo $months | xargs mkdir | |
for month in $months | |
do | |
ls -l $1 | grep $month | awk '{print $NF}' | xargs -I {} mv {} ./$month | |
done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta name="robots" content="noindex"> | |
<html> | |
<head> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js"></script> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Sequence Diagram</title> | |
</head> | |
<body> |
NewerOlder