Useful Commands: Difference between revisions
From Lucca's Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
Record audio files | Record audio files | ||
[[Record Audio Files in the Command Line]] | [[Record Audio Files in the Command Line]] | ||
Get/Set data from clipboard: | |||
getclip () { | |||
xclip -selection c -o | |||
} | |||
setclip () { | |||
xclip -selection c | |||
} | |||
Additional Resources: | Additional Resources: |
Revision as of 02:48, 11 December 2024
Delete all docker images
docker rmi -f $(docker images -a -q)
Create a file and set its permissions
install -m 755 /dev/null filename.txt
Record audio files
Record Audio Files in the Command Line
Get/Set data from clipboard:
getclip () { xclip -selection c -o } setclip () { xclip -selection c }
Additional Resources:
https://github.com/OpenRC/openrc/blob/master/service-script-guide.md