Useful Commands: Difference between revisions

From Lucca's Wiki
Jump to navigationJump to search
No edit summary
No edit summary
Tag: Manual revert
 
(12 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Delete all docker images
Delete all docker images
docker rmi -f $(docker images -a -q)


<code>docker rmi -f $(docker images -a -q)</code>
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://arachnoid.com/SecureShell/index.html Arachnoid.com: How to use SSH]
 
https://github.com/OpenRC/openrc/blob/master/service-script-guide.md

Latest revision as of 02:53, 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:

Arachnoid.com: How to use SSH

https://github.com/OpenRC/openrc/blob/master/service-script-guide.md