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
# Kulturnatten Events | |
*Generated: 2025-10-03 15:54:06* | |
*Total events: 219* | |
--- | |
## 1. 130. The association for rigths and living conditions for children in care |
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/fish | |
mkdir jpeg | |
for file in *.eps | |
echo $file | |
gs -sDEVICE=jpeg -dJPEGQ=100 -dNOPAUSE -dBATCH -dSAFER -dEPSFitPage -r300 -sOutputFile=jpeg/(basename $file .eps).jpg $file | |
end |
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
#=== Cheat sheet to do shell scripting ===# | |
== Basics | |
-Tell the o/s what to use as the interpreter. | |
#!/bin/bash | |
-Make bash scripts executable. | |
chmod +x filename |