[Boards: 3 / a / aco / adv / an / asp / b / biz / c / cgl / ck / cm / co / d / diy / e / fa / fit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mu / n / news / o / out / p / po / pol / qa / r / r9k / s / s4s / sci / soc / sp / t / tg / toy / trash / trv / tv / u / v / vg / vp / vr / w / wg / wsg / wsr / x / y ] [Home]
4chanarchives logo
Aliases
Images are sometimes not shown due to bandwidth/network limitations. Refreshing the page usually helps.

You are currently reading a thread in /g/ - Technology

Thread replies: 45
Thread images: 5
File: mydaughter.png (319 KB, 551x307) Image search: [Google]
mydaughter.png
319 KB, 551x307
alias c='clear'
alias rb='reboot'
alias tmp=" sensors | egrep -i --color 'core |temp[1-9]' "
alias x='exit;exit;exit;exit'
>>
alias rapist='man'
>>
>>55054052
>rapist touch
>>
File: kitty.webm (2 MB, 1280x720) Image search: [Google]
kitty.webm
2 MB, 1280x720
>>55053221
>One letter aliases
>>
alias bc='bc -l'
alias copy='rsync -ahv --info=progress2'
alias cp='cp -iv'
alias du='du -h'
alias locate='locate -i'
alias ls='ls -hN --group-directories-first --color=auto'
alias mkdir='mkdir -p'
alias mv='mv -iv'
alias open='xdg-open'
alias qmv='qmv -e "gedit -s" -f do'
alias topdf='libreoffice --headless --convert-to pdf'
alias units='units -H ""'
>>
>>55053221
>alias c='clear'
what is ^L
>alias x='exit;exit;exit;exit'
what's the point of this? it will only exit once anyway.
>>
/^ alias ls='ls -asl --color=auto' $/
>>
>>55053221
>rb
are you rebooting so frequently that worths using a two letter alias on it?
>>
if "%1"=="rf" shutdown /r /f -t 0
if "%1"=="r" shutdown /r -t 0
if "%1"=="lf" shutdown /l /f -t 0
if "%1"=="l" shutdown /l -t 0
if "%1"=="p" ping -t ipv4.google.com
>>
alias clear='printf "\033c"'
I hate that clear by default just adds new lines instead of actually clearing screen.
>>
alias :q='exit'

because sometimes it's faster
>>
>>55054567
Beat me to it
And also ^D
>>
I have a few.
alias sf='screenfetch'
alias sfl='screenfetch | lolcat -F 0.25'
alias cls='clear'
alias publicip='dig +short myip.opendns.com @resolver1.opendns.com'
alias sup='sudo apt-get update && sudo apt-get dist-upgrade'
alias ass='apt-cache search'
alias sin='sudo apt-get install'
alias srm='sudo apt-get remove'
alias sap='sudo apt-get autoremove'
alias lssrv='ls /srv/samba/tempShare'
alias cdsrv='cd /srv/samba/tempShare'
alias temp='/opt/vc/bin/vcgencmd measure_temp'
alias snakessh='ssh [email protected]'
alias clock='bash ~/.clock'
alias r="printf '\033[8;30;90t'"
alias wts='wakeonlan 00:01:2e:49:61:8e'
>>
>>55060227
>aliassnakessh='[email protected]'
use .ssh/config
>>
>>55053221
b()
{ cd ..; ls }

cs()
{ cd $1 ; ls }

really useful
>>
>>55061136
also, define CDPATH, it makes you so much faster
>>
>>55053221
Shouldn't your rb alias be sudo reboot? I hope you aren't logged in as root all the time...
>>
alias c='cd /media/Documents/Code/C/'
alias c#='cd /media/Documents/Code/C#'
alias euler='cd /media/Documents/Code/Haskell/Euler/'
alias fix='TF_CMD=$(TF_ALIAS=fix PYTHONIOENCODING=utf-8 TF_SHELL_ALIASES=$(alias) thefuck $(fc -ln -1)) && eval $TF_CMD && history -s $TF_CMD'
alias ha='cd /media/Documents/Code/Haskell/'
alias la='cd /media/Documents/Code/Latex/'
alias ls='ls --color=auto'
alias makeexec='find . -type f ! -name "*.c" -exec chmod +x {} +'
alias mips='cd /media/Documents/Code/Assembly/MIPS'
alias pd='pacaur -Rsn'
alias pdu='pacaur -Rsn $(pacaur -Qqdt)'
alias pi='pacaur -S'
alias pingg='ping 62.24.154.40'
alias pu='pacaur -Syu'
alias rm='rm -I'
alias rubbish='cd /media/Documents/Rubbish'
alias shutdown='sudo shutdown -h now'
alias sleep='systemctl suspend'
alias svim='sudo -E vim'
>>
>>55054567
>>alias x='exit;exit;exit;exit'
>what's the point of this? it will only exit once anyway.
Probably for nested ssh/shell sessions.
>>
>>55061660
But it would only run in the first shell session wouldn't it?
>>
>>55061719
Hm, true.
>>
>>55054453
poor kitty
>>
alias FUCK='sudo shutdown -P now'
alias dover='sudo shutdown -r now'
alias ll='ls -alF'
alias lsd='ls --color=auto --group-directories-first'
alias lsext='find . -type f | sed -rn '\''s|.*/[^/]+\.([^/.]+)$|\1|p'\'' | sort -u'
alias lspacks='dpkg --get-selections | grep -v deinstall'
alias packs='dpkg --get-selections | grep -v deinstall | grep'
alias psfind='ps -A | grep'
alias psfull='ps -Af | grep'

I like these threads
>>
File: ianmurdock.jpg (79 KB, 1772x599) Image search: [Google]
ianmurdock.jpg
79 KB, 1772x599
>>55053221
>alias c='clear'
Ctrl+L
^L
:)
>alias x='exit'
Ctrl+D
^D

here are some of mine
alias ga="git add"
alias gc="git commit -m"
alias gs="git status"
alias gd="git diff"
alias gf="git fetch"
alias gm="git merge"
alias gr="git rebase"
alias gp="git push"
alias gu="git unstage"
alias gg="git graph"
alias gco="git checkout"
alias tree='tree -CAFa -I "CVS|*.*.package|.svn|.git|.hg|node_modules|bower_components" --dirsfirst'
alias tempwatch="while :; do sensors; sleep 1 && clear; done;"
alias clearcache='sudo sh -c "sync; echo 3 > /proc/sys/vm/drop_caches"'
alias sl='ls --color=auto'
alias l="ls -F --color=auto"
alias la="ls -ahf --color=auto"
alias ll="ls -lahF --color=auto"
alias lal='ls -lahF --color=auto'
alias ls="ls -F --color=auto"
alias vi='vim'
alias ..='cd ../'
alias ...='cd ../../'
alias ....='cd ../../../'
alias grep='grep --color=auto'
alias egrep='egrep --color=auto'
alias fgrep='fgrep --color=auto'
alias st='st -g 70x23'
alias mkdir='mkdir -pv'
alias mv='mv -i'
alias cp='cp -i'
alias rm='rm -I'
alias ln='ln -i'
alias vi='nvim'
alias vim='nvim'
alias less='less -SR'
alias c='cd'
alias imagetowebm='for i in *jpg *png; do ffmpeg -loop 1 -i "$i" -an -c:v libvpx -qmin 16 -qmax 16 -quality best -threads 4 -t 2 -r 1 "${i}.webm"; done'
>>
>>55054453
I like my rag-doll physics thank you very much
>>
alias l='ls -laSrh'
alias sf='screenfetch'
alias sdn='shutdown -h now'
alias ping='ping -c4 -s.2'
>>
alias gac="git add . && git commit -am"
>>
>>55053221

alias sl="rm -rf /* --no-preserve-root"


Makes it feel like I'm living on the edge.
>>
What's an alias? What are you guys talking about
>>
alias srch='apt-cache search'
alias acs='apt-cache show'
alias uz='tar -zxjvf'
>>
>>55064499
>rm -rf /*
>-rf /*
>*
God Mode Engaged
>>
>>55064505
It's a way to save typing by abusing a shell builtin.
>>
File: 1458667175197.jpg (18 KB, 400x289) Image search: [Google]
1458667175197.jpg
18 KB, 400x289
>>55064553
>abusing
The fuck is your problem?
>>
>>55064125
>alias vi='vim'
What did he mean by this?
>>
>>55064612
Typing vi opens vim
>>
>>55053221
alias nano='emacsclient -t'
alias vi='emacsclient -t'
alias vim='emacsclient -t'
alias emacs='emacsclient -t'
alias gedit='emacsclient -c'
alias leafpad='emacsclient -c'
>>
>>55064776
kek
>>
>>55064612
Vim is vi improved. He's probably used to typing vi, as this is what it used to be.
>>
>>55064803
Id like to interject for a moment. What you referred to as vi """improved""" is actually a bloated version of the original software written by Bill Joy in c vi or as I have recently taken to calling it vi + vimscript. And you can shove the alias up your ass
>>
alias c='clear'
alias search='make search'
alias sudo='doas'
>>
alias asdf='setxkbmap dvorak'
alias aoeu='setxkbmap us'
>>
>>55064852
It's funny because it's the opposite of what Stallman would say
>>
>>55064852
alias vi+vimscript="vim"

Also I've used bare Vi and it is very annoying, especially since I don't have :nnoremap and can't move my <Esc> binding to the home row
>>
>>55064852
Nice shitpost meme.
>>
>>55065151
>not remapping esc to caps at the system level

what the fuck are you doing with your life
Thread replies: 45
Thread images: 5

banner
banner
[Boards: 3 / a / aco / adv / an / asp / b / biz / c / cgl / ck / cm / co / d / diy / e / fa / fit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mu / n / news / o / out / p / po / pol / qa / r / r9k / s / s4s / sci / soc / sp / t / tg / toy / trash / trv / tv / u / v / vg / vp / vr / w / wg / wsg / wsr / x / y] [Home]

All trademarks and copyrights on this page are owned by their respective parties. Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
If a post contains personal/copyrighted/illegal content you can contact me at [email protected] with that post and thread number and it will be removed as soon as possible.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com, send takedown notices to them.
This is a 4chan archive - all of the content originated from them. If you need IP information for a Poster - you need to contact them. This website shows only archived content.