Add searching for text in folder alias.

This commit is contained in:
Captain ALM 2024-08-17 17:33:29 +01:00
parent 019d575e26
commit 52bbfa007f
Signed by: alfred
GPG Key ID: 4E4ADD02609997B1

View File

@ -177,3 +177,6 @@ function record-screen-x11() {
ffmpeg -framerate "$srecintv" -f x11grab -s 1920,1080 -i :0.0+0,0 -vf settb=\(1/30\),setpts=N/TB/30 -r 30 -vcodec libx264 -crf 0 -preset ultrafast -threads 0 "$srecfname"; ffmpeg -framerate "$srecintv" -f x11grab -s 1920,1080 -i :0.0+0,0 -vf settb=\(1/30\),setpts=N/TB/30 -r 30 -vcodec libx264 -crf 0 -preset ultrafast -threads 0 "$srecfname";
cd "$cwd"; cd "$cwd";
} }
function search-in-files() {
grep -Rnw "$1" -e "$2";
}