Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
development:linux:misc_commands [2020/02/27 23:24]
kalenpw
development:linux:misc_commands [2023/04/12 19:58] (current)
kalenpw
Line 1: Line 1:
-====== MiscCommands ======+====== Misc Commands ======
 Various commands that are handy I tend to forget Various commands that are handy I tend to forget
 ---- ----
Line 9: Line 9:
 # mac # mac
 find . -type f -name "*.txt" -print0 | xargs -0 sed -i "" -E 's!<color (#([[:digit:]]|[A-Fa-f])+)>(.*)</color>!<font inherit/inherit;;\1;;inherit>\3</font>!g' find . -type f -name "*.txt" -print0 | xargs -0 sed -i "" -E 's!<color (#([[:digit:]]|[A-Fa-f])+)>(.*)</color>!<font inherit/inherit;;\1;;inherit>\3</font>!g'
- 
 # linux # linux
 find . -type f -name "*.txt" -print0 | xargs -0 sed -i -E 's!<color (#([[:digit:]]|[A-Fa-f])+)>(.*)</color>!<font inherit/inherit;;\1;;inherit>\3</font>!g' find . -type f -name "*.txt" -print0 | xargs -0 sed -i -E 's!<color (#([[:digit:]]|[A-Fa-f])+)>(.*)</color>!<font inherit/inherit;;\1;;inherit>\3</font>!g'
Line 21: Line 20:
 # count lines of code # count lines of code
 find . -name '*.php' | xargs wc -l find . -name '*.php' | xargs wc -l
 +
 +# sort _ first instead of by next char
 +update-locale LC_COLLATE=C # must log out and in
 +
 +# touch drag while holding click
 +sudo modprobe -r psmouse && sudo modprobe psmouse
 +
 +# disable touchpad
 +synclient TouchpadOff=1 
 +
 +# palm detection
 +synclient PalmDetect=1
 +
 +# replace text in filename with other text
 +for i in *.png; do mv "$i" "`echo $i | sed 's/to replace/new text/'`"; done
 +
 +# see what goes into your boottime
 +systemd-analyze critical-chain
 +
 +# if you can't format a drive and partition table was messed up
 +sudo dd if=/dev/zero of=/dev/sdX bs=2048 count=32
 +
 +# Symlink so you can put .desktop files in ~/Applications
 +ln -s $HOME/Applications $HOME/.local/share/applications
 +
 +# Reset sound drivers Fedora
 +systemctl --user restart pipewire pipewire-pulse wireplumber
 +# Reset sound drivers Mac
 +sudo pkill coreaudiod
  
 </code> </code>
 +----