Search Results

Search: Posts Made By: locoroco
2,960
Posted By locoroco
Answering my own question. Here I have chosen to...
Answering my own question. Here I have chosen to scale from height. It is also possible to scale from width.




height=$(ffprobe -v quiet -show_entries stream=width,height -of...
952
Posted By locoroco
Answering my own question. for file...
Answering my own question.




for file in folder/*;
do
echo $file
done
6,161
Posted By locoroco
[Solved] awk string with spaces
Why does this work:

awk -v s="this is a string" 'index($0, s)' file
while the following doesn't?

s="this is a string"
awk -v s=$s 'index($0, s)' file
How do I search for a string with spaces...
1,166
Posted By locoroco
I have found the solution for bash: mogrify...
I have found the solution for bash:
mogrify -resize x120 *.jpg

Mogrify is a part of ImageMagick
5,481
Posted By locoroco
Here I have removed the %20: echo...
Here I have removed the %20:
echo /Users/imac1/Music/iTunes/iTunes 20Media/Music/The%20Rolling%20Stones/Forty%20Licks%20%5BDisc%202%5D/2-13%20Keys%20To%20Your%20Love.mp3 | sed 's/%..//g'

output:...
Showing results 1 to 5 of 5

 
All times are GMT -4. The time now is 01:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy