My first attempt to learn Python resulted in a Gist Blog.
I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs.
GistBlog | |
-------- | |
My first attempt to learn Python resulted in a Gist Blog. | |
I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs. |
GistBlog | |
-------- | |
My first attempt to learn Python resulted in a Gist Blog. | |
I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs. |
GistBlog | |
-------- | |
My first attempt to learn Python resulted in a Gist Blog. | |
I had seen someone diong a similar thing, but wanted to learn more programming and how to use IO to files and connecting to APIs. |
#!/bin/bash | |
# pdf-compress: compress a PDF file | |
Input="$1" | |
Output="$2" | |
gs -sDEVICE=pdfwrite \ | |
-dCompatibilityLevel=1.4 \ | |
-dNOPAUSE -dQUIET -dBATCH \ | |
-sOutputFile="$Output" "$Input" |
mkdir folder{1..10} && touch folder{1..10}/file{1..10}.txt |