2 articles tagged "shell variable"
- Linux display the date when a file was accessed with stat command
A quick question from my mail bag:
How do I display or get the date when a file was last time accessed?
The best and simplest way is to use stat command. It displays file or file system status such as:
=> File size
=> File type
=> Inode number
=> UID/GID
=> File access , modify and creation time etc.
stat command [...] - BASH shell scripting tip: Set default values for variable
A shell variable may be assigned to by a statement using following syntax:
var=value
If value is not given, the variable is assigned the null string. In shell program it is quite useful to provide default value for variables. For example consider rsync.sh script:
#!/bin/bash
RSRC=$1
LOCAL=$2
rsync -avz -e ’ssh ‘ user@myserver:$RSRC $LOCALThis script can be run as follows:
$ ./rsync.sh [...]
Viewing 1-2 of 2 posts. ( see all popular tags )


Recent Comments
Today ~ 4 Comments
Today ~ 164 Comments
08/24/2006 01:56 pm ~ 11 Comments
Today ~ 4 Comments
Today ~ 5 Comments