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 | |
TODAY=$(date) | |
export TODAY | |
echo "Let's fake us some funk shall we?" | |
npx fake-git-history my-history | |
cd my-history || echo "my-history doesn't exist! Failure" && exit |
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/bash | |
# Check if Calibre's ebook-convert command is available | |
if ! command -v ebook-convert &>/dev/null; then | |
echo "Calibre's ebook-convert command not found. Please install Calibre." | |
exit 1 | |
fi | |
# Create a directory to store the converted PDF files | |
mkdir -p converted_pdfs |
OlderNewer