Updates.
This commit is contained in:
parent
a3bd316ea2
commit
d0f4320c28
8 changed files with 311 additions and 2 deletions
|
@ -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/"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue