To export a git branch
git archive master | tar -x -C /somewhere/else Post Footer automatically generated by Add Post Footer Plugin for wordpress.
git archive master | tar -x -C /somewhere/else Post Footer automatically generated by Add Post Footer Plugin for wordpress.
for directory in *; do if [ -d $directory ]; then echo $directory; fi; done Post Footer automatically generated by Add Post Footer Plugin for wordpress.
As I slowly start developing software for Linux -the good ol’ days- I need to refresh my basics. Can I automate a system? Yeah. Do I remember how to refresh a bashrc/cshrc file? No. source .bashrc Post Footer automatically generated by Add Post Footer Plugin for wordpress.
Just a reminder. To encrypt all pdf -or any file for that matters- remember this snippet. for file in *.pdf do gpg -e -r <Key-Name> $file done Post Footer automatically generated by Add Post Footer Plugin for wordpress.