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
<?xml version="1.0" encoding="UTF-8"?> | |
<PCMS xmlns="http://www.auspost.com.au/xml/pcms"> | |
<SendPCMSManifest> | |
<header> | |
<TransactionDateTime>2010>01-13T16:30:00.0Z</TransactionDateTime> | |
<TransactionId>1</TransactionId> | |
<TransactionSequence>1</TransactionSequence> | |
<ApplicationId>MERCHANT</ApplicationId> | |
</header> | |
<body> |
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
#!/usr/bin/env bash | |
echo "This script will download and install the tumblr migration script" | |
echo "script and its dependencies on Debian systems." | |
echo " " | |
read -p "Install dependencies from apt-get? [Yn] " | |
if [ "$REPLY" == "" -o "$REPLY" == "y" -o "$REPLY" == "Y" ]; then | |
echo "Installing the dependencies..." | |
echo " " | |
sudo apt-get install libxslt-dev libxml2-dev ruby rubygems pandoc |
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
# stuff to add at end of ~/.bash_logout | |
if ((agent_started)); then | |
echo "Killing ssh agent" | |
ssh-agent -k | |
fi |