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/sh | |
# A script that converts a latex file to markdown | |
# using pandoc | |
# by Ioannis Polymenis <[email protected]> | |
echo "A script to convert latex files to markdown\n" | |
sleep 1 | |
DIR_PATH=$PWD |
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 | |
SECONDS=0 | |
source ~/miniconda3/etc/profile.d/conda.sh | |
# Set miniconda environment path | |
ENV_PATH="$HOME/miniconda3/envs" | |
echo "The folowing environments are installed:$(ls $ENV_PATH)" |