This commit is contained in:
CronyAkatsuki 2023-09-04 20:25:14 +02:00
parent a3bd316ea2
commit d0f4320c28
8 changed files with 311 additions and 2 deletions

View file

@ -39,8 +39,8 @@ md () {
# Move a file and create a link in it's place
mvln () {
from=$(readlink -f $1)
to=$(readlink -f $2)
[ ! -d "$(basename $to)" ] && mkdir "$to"
to="$2"
[ ! -d "$(dirname $to)" ] && mkdir "$(dirname $to)"
mv $from $to
ln -s $to $from
}
@ -124,3 +124,7 @@ n () {
rm -f "$NNN_TMPFILE" > /dev/null
}
}
upfast () {
curl -F "file=@$(readlink -f $1)" "https://upfast.cronyakatsuki.xyz/"
}