Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(sh): add journal and system ctl aliases #167

Merged
merged 1 commit into from
Feb 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions shell/aliases
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,10 @@ alias clear_dns_cache='sudo killall -HUP mDNSResponder'
alias cat='cat -n'
alias find_bad_words='curl --silent http://www.bannedwordlist.com/lists/swearWords.txt > /tmp/badwords && rg --word-regexp --file=/tmp/badwords'
alias rg_ip_address='rg "(?:[0-9]{1,3}\.){3}[0-9]{1,3}" --only-matching'
alias sc='sudo systemctl'
alias scu='systemctl --user'
alias jc='journalctl'
alias jcu='journalctl --user'

watch_file() {
tail -f "${1}" | bat --paging=never -l log
Expand Down
Loading