alias fn='find . -name':
Example usage:
$ fn "page*.htm"
Tip from Joe Grossberg.
reviews, tips and tricks, opinions about open and less open technology
alias fn='find . -name':
$ fn "page*.htm"
for file in *.flv; do mencoder -oac mp3lame -ovc lavc "$file" -o "`echo $file | sed -e 's/\.flv$/\.avi/'`"; done
Posted by
m. s.
at
01:40
0
comments
Posted by
m. s.
at
18:57
0
comments
Posted by
m. s.
at
22:35
31
comments
Labels: linux, open source, udev
for i in /dev/[hs]d*
dd if=$i bs=446 count=1 2>/dev/null | strings | grep -q GRUB \
&& echo "GRUB found in $i"
Posted by
m. s.
at
11:22
9
comments
Labels: bash, boot, bootloader, grub, shell