-
Pratik Sinha
Copy a File to Multiple Directories on Linux
find . -type d | while read dir; do cp PATH_TO_FILE $dir; done
Reply
Microblog
find . -type d | while read dir; do cp PATH_TO_FILE $dir; done
Read More >>sort PATH_TO_FILE | uniq -d Continuously watch for duplicate lines as you work on a file watch “sort PATH_TO_FILE | uniq -d”
Read More >>This happens when the plugin developer leaves whitespace before <?php or after ?>.
Read More >>This wordpress plugin removes the author column on Edit Posts page (for custom post types as well). The author column doesn’t make sense on single author blogs. By removing it, you can save precious real estate and use other useful plugins like Simply Show Ids. Remove Author Column This is my first wordpress plugin. Just [...]
Read More >>A simple script which will recognize all image types in the PWD and reduce them by 50% and copy them to the resized folder under PWD. Good for bulk resizing of images. #!/bin/bash files=($(file -i * | awk -F ‘:’ ‘BEGIN {ORS=""} /^.*:[ \t]*image\/[a-z]*; charset=binary/ {for(i=1;i<NF-1;i++) {print $i":"} {print $(NF-1)"\n"} }’ | sed ‘s/ /:spacecharacter:/g’ [...]
Read More >>Everytime I write a bash script, I have to look up one of these special bash variables and I always forget which one is which. Jotting it down so that I don’t have to google for them the next time. $@ – all arguments as a big string. $# – number of arguments passed in [...]
Read More >>There are some issues which are almost impossible to debug, but when you spot whats wrong, you feel incredibly stupid. This was one of those errors. Got this error, when I copy-pasted javascript code from the <head> of an HTML document and spent close to half an hour figuring out what was wrong. So what [...]
Read More >>Recent Comments
- Fossama commented on Google Gears for Firefox 3.6 (Linux)
(1 weeks ago) - Erik commented on Utility to Send Commands or Data to Other Terminals (tty/pts)
(2 weeks ago) - Pratik Sinha answered on Plugin-less Integration of Facebook Like, Google Buzz and TweetMeme Retweet with Wordpress
(7 weeks ago) - Viktor commented on Plugin-less Integration of Facebook Like, Google Buzz and TweetMeme Retweet with Wordpress
(7 weeks ago)