Compare commits

...

1 Commits

Author SHA1 Message Date
97d867156c
Recreate user scripts and add them to the PATH 2020-06-08 06:21:12 +02:00
3 changed files with 24 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,5 @@
#!/bin/sh
webtorrent download "$1" -s
read -p "File number: " nr
webtorrent download "$@" -s $nr -o /tmp/webtorrent

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