Compare commits
2 Commits
5d70ca6676
...
978454d904
Author | SHA1 | Date |
---|---|---|
Ray Elliott | 978454d904 | |
Ray Elliott | 94212a12b3 |
16
aliases.sh
16
aliases.sh
|
@ -68,3 +68,19 @@ smartresize() {
|
|||
mc() {
|
||||
mkdir "$1" && cd "$1"
|
||||
}
|
||||
|
||||
# TODO testing
|
||||
ytdl-ct() {
|
||||
ssh "youtube-dl@192.168.0.118 'screen -m -d ./download.sh $1'"
|
||||
}
|
||||
|
||||
# TODO testing
|
||||
ytdl-ct-audio() {
|
||||
ssh "youtube-dl@192.168.0.118 'screen -m -d ./download.sh --config-location ~/.config/youtube-dl/config-audio-only $1'"
|
||||
}
|
||||
|
||||
alias npm_real=$(command -v npm)
|
||||
function npm {
|
||||
echo "Please use Yarn instead!!"
|
||||
echo " If you must use npm use: 'npm_real'"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue