Archiwum dla Lipiec, 2012
Richard Stallman (as St IGNUcius) : Emacs vs Vi
Posted: 28 lipca 2012 in Richard Matthew StallmanTagi: GNU, Richard Matthew Stallman
0
To extract content of MSI install file (ex. file.msi):
- msiexec /a D:tmpfile.msi /qb TARGETDIR=D:tmp
Poniżej skrypt generujący certyfikat SSL:
#!/bin/bash # 5 lat days=1825 rm -f /tmp/cert.pem /tmp/cert.key openssl req -new -x509 -days $days -nodes -out /tmp/cert.pem -keyout /tmp/cert.key echo "Certyfikat wygenerowany: /tmp/cert.pem /tmp/cert.key"