Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
development:linux:misc_commands [2023/04/12 12:45] kalenpw |
development:linux:misc_commands [2023/04/12 19:58] (current) kalenpw |
||
---|---|---|---|
Line 9: | Line 9: | ||
# mac | # mac | ||
find . -type f -name " | find . -type f -name " | ||
- | |||
# linux | # linux | ||
find . -type f -name " | find . -type f -name " | ||
Line 35: | Line 34: | ||
# replace text in filename with other text | # replace text in filename with other text | ||
- | for i in *.png; do mv " | + | for i in *.png; do mv " |
# see what goes into your boottime | # see what goes into your boottime | ||
Line 45: | Line 44: | ||
# Symlink so you can put .desktop files in ~/ | # Symlink so you can put .desktop files in ~/ | ||
ln -s $HOME/ | ln -s $HOME/ | ||
+ | |||
+ | # Reset sound drivers Fedora | ||
+ | systemctl --user restart pipewire pipewire-pulse wireplumber | ||
+ | # Reset sound drivers Mac | ||
+ | sudo pkill coreaudiod | ||
</ | </ | ||
---- | ---- | ||