Recreate user scripts and add them to the PATH

This commit is contained in:
coolneng 2020-06-08 02:11:19 +02:00
parent 3869933134
commit 910239fdef
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
3 changed files with 27 additions and 0 deletions

View File

@ -14,6 +14,7 @@ alias docker-compose "podman-compose"
# Additional paths
set PATH $PATH $HOME/.emacs.d/bin
set PATH $PATH $HOME/.local/share/scripts
# fff colors [0-9]
set -x FFF_COL1 4

View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
directory=/tmp/webtorrent
player=mpv
webtorrent download "$1" -s -o "$directory" --"$player"
read -rp "File number: " nr
webtorrent download "$@" -s "$nr" -o "$directory" --"$player"

View File

@ -0,0 +1,18 @@
#!/bin/sh
if [ $# -lt 2 ]; then
echo "Usage: subject.sh <subject name> <subject type>"
exit 1
fi
name=$1
type=$2
if [ "$type" -eq 0 ]; then
mkdir -p "$name"/Code
mkdir -p "$name"/TP
mkdir -p "$name"/Exos
else
mkdir -p "$name"/TP
mkdir -p "$name"/Exos
fi