mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 08:08:10 -07:00
start_again
This commit is contained in:
Binary file not shown.
@@ -1,20 +0,0 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import argparse
|
||||
import os
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
def main():
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("op")
|
||||
parser.add_argument("type")
|
||||
res = parser.parse_args()
|
||||
print(res)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -1,11 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
|
||||
TARGET="../draft"
|
||||
#DRAFTS=$(ls -l $TARGET| awk '!/index/ {print $9}')
|
||||
DRAFTS=$(ls -l $TARGET| awk '{print $9}')
|
||||
|
||||
for DRAFT in $DRAFTS
|
||||
do
|
||||
pandoc $TARGET/$DRAFT -o ../$(echo $DRAFT| cut -d'.' -f1).html
|
||||
done
|
||||
Reference in New Issue
Block a user