remove .sh stuff

This commit is contained in:
constantin 2024-09-04 15:21:57 +02:00
parent 8d49ae2218
commit 36b8f5efd5
8 changed files with 0 additions and 60 deletions

View File

@ -1,5 +0,0 @@
#!/bin/bash
alias c='clear'
alias apt='sudo apt'
alias apt-get='sudo apt-get'

9
all.sh
View File

@ -1,9 +0,0 @@
#!/bin/bash
source <(curl -s https://cdn.simonis.lol/alias.sh)
source <(curl -s https://cdn.simonis.lol/ddev.sh)
source <(curl -s https://cdn.simonis.lol/list.sh)
source <(curl -s https://cdn.simonis.lol/composer.sh)
source <(curl -s https://cdn.simonis.lol/git.sh)
source <(curl -s https://cdn.simonis.lol/db.sh)
source <(curl -s https://cdn.simonis.lol/misc.sh)

View File

@ -1,5 +0,0 @@
#!/bin/bash
alias cr='composer require'
alias ci='composer install'
alias cu='composer update'

6
db.sh
View File

@ -1,6 +0,0 @@
#!/bin/bash
alias schema='php bin/console doctrine:schema:update --force'
alias migr='php bin/console doctrine:fixtures:load --no-interaction'
alias drop='php bin/console doctrine:database:drop --force'
alias create='php bin/console doctrine:database:create'

View File

@ -1,6 +0,0 @@
#!/bin/bash
alias console='ddev exec php bin/console'
alias composer='ddev exec composer'
alias npm='ddev exec npm'
alias php='ddev exec php'

18
git.sh
View File

@ -1,18 +0,0 @@
#!/bin/bash
alias ga='git add'
alias gaa='git add .'
alias gc='git commit'
alias gp='git push'
alias gpf='git push --force'
alias gpu='git pull'
alias gl='git log'
alias gb='git branch'
alias gr='git restore'
alias gra='git restore .'
alias gs='git status'
alias gch='git checkout'
alias gst='git stash'
alias gstd='git stash drop'
alias gsta='git stash apply'
alias gstp='git stash pop'

View File

@ -1,7 +0,0 @@
#!/bin/bash
unalias ls 2>/dev/null
ls() {
/usr/bin/ls "$@" | lolcat;
}

View File

@ -1,4 +0,0 @@
#!/bin/bash
alias test='php bin/phpunit'
alias cover='php bin/phpunit --coverage-html=html-coverage'