day=$(date +%d)
month=$(date +%m)
But, what if we want to perform the same task with just one program invocation? Here comes the power of eval! date(1) outputs a string like "day=29; month=07; year=11" (notice the semicolons I added on purpose at date's custom output) which is a legal shell line. This like is then parsed and executed by the shell once again with the help of eval. Just setting 3 variables!
Inspired by LinuxJournal's column "Dave Taylor's Work the Shell".
$ eval $(date +"day=%d; month=%m; year=%y") $ echo $day/$month/$year 29/07/11
This version uses read instead of eval.
No command substitution but subshell redirection
Any thoughts on this command? Does it work on your machine? Can you do the same thing with only 14 characters?
You must be signed in to comment.
commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
stat -s some.file
st_dev=234881026 st_ino=3657562 st_mode=0100644 st_nlink=1 st_uid=501 st_gid=20 st_rdev=0 st_size=478 st_atime=1312497217 st_mtime=1309535724 st_ctime=1309535724 st_birthtime=1309535658 st_blksize=4096 st_blocks=8 st_flags=0 When you eval the output of stat -s (if you have that option), you get a bunch of variables set.