mike dupont
commited on
Commit
·
823d722
1
Parent(s):
075326f
adding commands
Browse files
README.md
CHANGED
@@ -3,3 +3,62 @@ license: creativeml-openrail-m
|
|
3 |
---
|
4 |
|
5 |
This contains papers and different forms
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
|
5 |
This contains papers and different forms
|
6 |
+
|
7 |
+
|
8 |
+
2073 git submodule add https://github.com/ppwwyyxx/SoPaper
|
9 |
+
2074 cd SoPaper/
|
10 |
+
2075 ls
|
11 |
+
2076 pip install .
|
12 |
+
2077 sopaper
|
13 |
+
2078 sopaper unimath
|
14 |
+
2079 ls
|
15 |
+
2080 mkdir data
|
16 |
+
2081 mv Unimath.pdf data/
|
17 |
+
2082 sopaper unimath --help
|
18 |
+
2083 pdftotext data/Unimath.pdf
|
19 |
+
2084 cd data/
|
20 |
+
2085 git init
|
21 |
+
2086 git add Unimath.*
|
22 |
+
2087 git commit -m 'baseline'
|
23 |
+
2088 pandoc Unimath.pdf Unimath.org
|
24 |
+
2089 pdftohtml Unimath.pdf
|
25 |
+
2090 ls -ltar
|
26 |
+
2091 pandoc Unimath.html Unimath.org
|
27 |
+
2092 pandoc Unimath.html -o Unimath.org
|
28 |
+
2093 pandoc Unimath.html -O Unimath.org
|
29 |
+
2094 pandoc --help
|
30 |
+
2095 pandoc Unimath.html --to org
|
31 |
+
2096 ls -latr
|
32 |
+
2097 pandoc Unimaths.html --to org
|
33 |
+
2098 pandoc Unimaths.html --to org >Unimath.org
|
34 |
+
2099 pandoc Unimaths.html --to md
|
35 |
+
2100 pandoc Unimaths.html --to markdown
|
36 |
+
2101 git add Unimath.org
|
37 |
+
2102 git commit -m 'base' -a
|
38 |
+
2103 git remote add https://huggingface.co/datasets/introspector/papers
|
39 |
+
2104 git remote add origin https://huggingface.co/datasets/introspector/papers
|
40 |
+
2105 git add *
|
41 |
+
2106 git commit -m 'paper step1' -a
|
42 |
+
2107 git push
|
43 |
+
2108 git pull
|
44 |
+
2109 git config pull.rebase true # rebase
|
45 |
+
2110 git pull
|
46 |
+
2111 git commit -m 'merge' -a
|
47 |
+
2112 git push
|
48 |
+
2113 cp ~/.gitignore_templates/Emacs.gitignore .gitingnore
|
49 |
+
2114 cp ~/.gitignore_templates/Emacs.gitignore .gitignore
|
50 |
+
2115 git status
|
51 |
+
2116 git add .gitignore
|
52 |
+
2117 git commit -m 'clean' -a
|
53 |
+
2118 ls
|
54 |
+
2119 mkdir -p 2016/09/27/Heidelberg/HLF2015/Unimath
|
55 |
+
2120 mv Unimath* 2016/09/27/Heidelberg/HLF2015/Unimath/
|
56 |
+
2121 git status
|
57 |
+
2122 git add 2016
|
58 |
+
2123 git commit -m 'moving' -a
|
59 |
+
2124 git push
|
60 |
+
2125 mv 2016/09/27/Heidelberg/HLF2015 016/09/27/Heidelberg/HLF2016
|
61 |
+
2126 git add 2016/
|
62 |
+
2127 git commit -m 'move' -a
|
63 |
+
2128 git push
|
64 |
+
2129 history
|