Search Results

11
votes

In the bash script how do I know the script file name?

If the script name has spaces in it, a more robust way is to use "$0" or "$(basename "$0")" to prevent the name from getting mangled or interpreted in any way. In general, …
1
vote

Convert text to 7-bit ASCII from command-line

The Elinks web browser will convert Unicode entities to their ASCII equivalents, giving things like "--" for "—" and "..." for "…", etc. There is a …
2
votes

How can I select random files from a directory in bash?

Here's a script that uses GNU sort's random option: ls |sort -R |tail -$N |while read file; do # Something involving $file, or you can leave # off the while to just get the …
2
votes

git: a quick command to go to root of the working tree

Unfortunately, changing your current directory can only be done by the shell, not by any subprocess. By the time git gets around to parsing your command, it's already too late -- git has already be …
0
votes

Hashing Multiple Files

Ruby: #!/usr/bin/env ruby require 'digest/md5' Dir.glob('**/*') do |f| next unless File.file? f next if /\.md5sum-[0-9a-f]{32}/ =~ f md5sum = Digest::MD5.file f newname = " …