Artificial intelligent assistant

One liner mkdir with directory naming as days? How can I create directories named as days of the week (i.e Monday, Tuesday, .... Saturday) inside a directory like /tmp/ in one command only? Like combination of `mkdir` with `date +%A` or any other. mkdir -p /tmp/"$(date +%A)" ---> /tmp/Tuesday Should be as below after command executes. /tmp/Monday /tmp/Tuesday . . . /tmp/Saturday I want this in a single command, not a script.

You can use the following 'command' to get the desired result:


for i in {1..7}; do mkdir /tmp/$(date +"%A" --date "$i days ago"); done

xcX3v84RxoQ-4GxG32940ukFUIEgYdPy 06a168fea6df639d11349ea59730c914