|
![]() ![]()
![]() ![]() |

Tapping screen for TikTok using shell script - $ while true; do input tap $(wm size | awk -F 'x' '{print $1/2 " " $2/2}'); done View this command to comment, vote or add to favourites View all commands by wuseman1 Diff your entire server config at ScriptRock.com
27 May 13:32
$ while true; do input tap $(wm size | awk -F 'x' '{print $1/2 " " $2/2}'); done
Diff your entire server config at ScriptRock.com
- Facebook✓
- Google+✓
- Instapaper✓
- Tweet✓

Mount SMB v1 share on Linux - $ mount -t cifs -o username=administrator,password=xxx,vers=1.0,sec=ntlmv2 //192.168.0.30/nas_share /mnt/win_share View this command to comment, vote or add to favourites View all commands by swarzynski Diff your entire server config at ScriptRock.com
20 Mar 08:16
$ mount -t cifs -o username=administrator,password=xxx,vers=1.0,sec=ntlmv2 //192.168.0.30/nas_share /mnt/win_share
Diff your entire server config at ScriptRock.com
- Facebook✓
- Google+✓
- Instapaper✓
- Tweet✓

Download and Extract mp3 from Youtube Video - $ yt-dlp --extract-audio --audio-format mp3 --audio-quality 0 -o "%(title)s.%(ext)s" <youtube_link_here> This will download a video when given the link and it will extract the audio from the video. The filename will be the same as the video's title. File extension in mp3. View this command
22 Nov 19:54 2024
$ yt-dlp --extract-audio --audio-format mp3 --audio-quality 0 -o "%(title)s.%(ext)s" <youtube_link_here>
This will download a video when given the link and it will extract the audio from the video. The filename will be the same as the video's title. File extension in mp3.
Diff your entire server config at ScriptRock.com
- Facebook✓
- Google+✓
- Instapaper✓
- Tweet✓

Get a random quote from Breaking Bad - $ curl -s https://api.breakingbadquotes.xyz/v1/quotes | jq -r '.[] | "\"\(.quote)\" -- \(.author)"' Hit an API with curl returning a random quote, then parse the result with jq. View this command to comment, vote or add to favourites View all commands by malathion Diff your entire server
09 Sep 14:58 2024
$ curl -s https://api.breakingbadquotes.xyz/v1/quotes | jq -r '.[] | "\"\(.quote)\" -- \(.author)"'
Hit an API with curl returning a random quote, then parse the result with jq.
Diff your entire server config at ScriptRock.com
- Facebook✓
- Google+✓
- Instapaper✓
- Tweet✓

printf '%s\n' 'District 9' - $ echo "https://www.imdb.com/title/tt1136608/"|xargs elinks View this command to comment, vote or add to favourites View all commands by wuseman1 Diff your entire server config at ScriptRock.com
07 Sep 05:51 2024
$ echo "https://www.imdb.com/title/tt1136608/"|xargs elinks
Diff your entire server config at ScriptRock.com
- Facebook✓
- Google+✓
- Instapaper✓
- Tweet✓

What's the time! - $ echo -e $(date +%Y:%M:%D)| sed 's/0/????/g; s/1/????/g; s/2/????/g; s/3/????/g; s/4/????/g; s/5/????/g; s/6/????/g; s/7/????/g; s/8/????/g; s/9/????/g This is for you who want a new challenge! See ya on level +99! View this command to comment, vote or add to favourites View all commands by
02 Sep 01:05 2024
$ echo -e $(date +%Y:%M:%D)| sed 's/0/????/g; s/1/????/g; s/2/????/g; s/3/????/g; s/4/????/g; s/5/????/g; s/6/????/g; s/7/????/g; s/8/????/g; s/9/????/g
This is for you who want a new challenge! See ya on level +99!
Diff your entire server config at ScriptRock.com
- Facebook✓
- Google+✓
- Instapaper✓
- Tweet✓

Fish Hunting. Shark is missed! - $ echo -e "><(((°>" View this command to comment, vote or add to favourites View all commands by wuseman1 Diff your entire server config at ScriptRock.com
02 Sep 00:59 2024
$ echo -e "><(((°>"
Diff your entire server config at ScriptRock.com
- Facebook✓
- Google+✓
- Instapaper✓
- Tweet✓

Width/Heigth of a terminal window. - $ w=$(tput cols);h=$(tput lines); echo $w:$h View this command to comment, vote or add to favourites View all commands by wuseman1 Diff your entire server config at ScriptRock.com
02 Sep 00:55 2024
$ w=$(tput cols);h=$(tput lines); echo $w:$h
Diff your entire server config at ScriptRock.com
- Facebook✓
- Google+✓
- Instapaper✓
- Tweet✓

Matrix - Just 1 wobbly line rather then a rain! (shorter) - $ while true; do printf "\e[32m%*s\e[0m" $(tput cols) $(shuf -e {0..1} -n $(tput cols)); sleep 0.1; done No sample. Try it and see the magic! View this command to comment, vote or add to favourites View all commands by wuseman1 Diff your entire server config at ScriptRock.com
02 Sep 00:44 2024
$ while true; do printf "\e[32m%*s\e[0m" $(tput cols) $(shuf -e {0..1} -n $(tput cols)); sleep 0.1; done
No sample. Try it and see the magic!
Diff your entire server config at ScriptRock.com
- Facebook✓
- Google+✓
- Instapaper✓
- Tweet✓

Matrix - Just 1 wobbly line rather then a rain! - $ clear; sleep 5; echo 'while :; do printf "\e[32m%*s\e[0m" $(tput cols) $(shuf -e {0..1} -n $(($(tput lines) * $(tput cols)))); sleep 0.1; done' Remove clear; sleep 5 and echo for not doing sample! View this command to comment, vote or add to favourites View all commands by wuseman1 Diff
02 Sep 00:40 2024
$ clear; sleep 5; echo 'while :; do printf "\e[32m%*s\e[0m" $(tput cols) $(shuf -e {0..1} -n $(($(tput lines) * $(tput cols)))); sleep 0.1; done'
Remove clear; sleep 5 and echo for not doing sample!
Diff your entire server config at ScriptRock.com
- Facebook✓
- Google+✓
- Instapaper✓
- Tweet✓
1 | Next »