24 lines
638 B
Text
24 lines
638 B
Text
Use this file as a post-it for packages to install on laptop/desktop.
|
|
|
|
add notation about awk as
|
|
Select everything but the second field:
|
|
awk '!($2="")'
|
|
|
|
add notation about tr (translate command):
|
|
replace every newline with a single space:
|
|
tr '\n' ' '
|
|
|
|
add notation about using find to list only files in current directory and NOT subdirectory:
|
|
find $dir -maxdepth 1 -type f
|
|
|
|
install vrms (because we all need a tiny richard stallman complaining about which packages on our computer actually aren't libre)
|
|
|
|
paru vrms
|
|
|
|
install colordiff:
|
|
|
|
doas pacman -S colordiff
|
|
|
|
remove mplayer (stopped working, use mpv instead)
|
|
|
|
doas pacman -Rs mplayer
|