APPLE_DUMP(1) Netatalk 2.2 APPLE_DUMP(1)NAME
apple_dump - Dump AppleSingle/AppleDouble format file
SYNOPSIS
apple_dump [-a] FILE | DIR
apple_dump -f FILE
apple_dump -d FILE
apple_dump -h | -help | --help
apple_dump -v | -version | --version
DESCRIPTION
apple_dump dump AppleSingle/AppleDouble format file.
OPTIONS -a FILE|DIR
This is default. Dump a AppleSingle/AppleDouble file for FILE or DIR automatically. Extrapolate FinderInfo type from absolute path. If
FILE is not AppleSingle/AppleDouble format, look for .AppleDouble/FILE and ._FILE. If DIR, look for DIR/.AppleDouble/.Parent and ._DIR.
-f FILE
Dump FILE. Assume FinderInfo to be FileInfo.
-d FILE
Dump FILE. Assume FinderInfo to be DirInfo.
-h, -help, --help
Display the help and exit
-v, -version, --version
Show version and exit
NOTE
There is no way to detect whether FinderInfo is FileInfo or DirInfo. By default, apple_dump examins whether file or directory, a parent
directory is .AppleDouble, filename is ._*, filename is .Parent, and so on.
If setting option -f or -d, assume FinderInfo and doesn't look for another file.
SEE ALSO ad(1)Netatalk 2.2 02 Sep 2011 APPLE_DUMP(1)
Check Out this Related Man Page
APPLE_DUMP(1) Netatalk 2.2 APPLE_DUMP(1)NAME
apple_dump - Dump AppleSingle/AppleDouble format file
SYNOPSIS
apple_dump [-a] FILE | DIR
apple_dump -f FILE
apple_dump -d FILE
apple_dump -h | -help | --help
apple_dump -v | -version | --version
DESCRIPTION
apple_dump dump AppleSingle/AppleDouble format file.
OPTIONS -a FILE|DIR
This is default. Dump a AppleSingle/AppleDouble file for FILE or DIR automatically. Extrapolate FinderInfo type from absolute path. If
FILE is not AppleSingle/AppleDouble format, look for .AppleDouble/FILE and ._FILE. If DIR, look for DIR/.AppleDouble/.Parent and ._DIR.
-f FILE
Dump FILE. Assume FinderInfo to be FileInfo.
-d FILE
Dump FILE. Assume FinderInfo to be DirInfo.
-h, -help, --help
Display the help and exit
-v, -version, --version
Show version and exit
NOTE
There is no way to detect whether FinderInfo is FileInfo or DirInfo. By default, apple_dump examins whether file or directory, a parent
directory is .AppleDouble, filename is ._*, filename is .Parent, and so on.
If setting option -f or -d, assume FinderInfo and doesn't look for another file.
SEE ALSO ad(1)Netatalk 2.2 02 Sep 2011 APPLE_DUMP(1)
hi
i have a directory /tmp/Satya,it contains
5.FILE
6.FILE
7.FILE
i need to read each file , and read its content line by line
please help
thanks
Satya (2 Replies)
my script:
FILE="$1"
echo "You Entered $FILE"
if ; then
tmp=$(cat $FILE | sed '/./!d' | sed -n '/regex/,/regex/{/regex/d;p}'| sed -n '/---/,+2!p' | sed -n '/#/!p' | sed 's/^*//' | sed -e\
s/*:// | sed -n '/==> /!p' | sed -n '/--> /!p' | sed -n '/regex/,+1!p' | sed -n '/======/!p' | sed -n... (1 Reply)
Hi,
I am stuck up with getting value from a newvariable that I constructed from other variable...
For ex.
DIR=mydir
BKUP_mydir=bkupdir
DSTDIR="${BKUP_$DIR}"
cp -r $DIR/* $DSTDIR/*
Now I am unable to store the value of BKUP_mydir in DSTDIR variable..
Note: I have given sample... (1 Reply)
Suppose u have two input files FILE A and FILE B
FILE A
AACD
ABBD
ACBC
FILE B
s/ A B C D E
A 1 -2 3 4 2
B 3 2 -1 2 1
C 2 3 1 2 3
D 3 4 -3 2 2
E 1 3 4 2 3
So in FILE A we have calculated frequency... (3 Replies)
Hi,
I was working on a file and i closed my terminal before saving the file.
I would like to know whether,
there is any LOCATION where i can find the UNSAVED FILE.
Regards,
Venkat (2 Replies)
hi,
i m checking the directory is empty or not
FILE=""
DIR="/ann/a1"
if ; then
echo "$dir is not Empty"
else
echo "$dir is Empty"
fi
i m always getting this directory is not empty, even if the directory is empty
please point where i had went wrong?? (6 Replies)
are you suppose to only use one DIR declarations, for example
DIR *dir_ptr;
because I'm declaring mine like so:
DIR *dir_ptr_src, *dir_ptr_dest;
and using it like so:
if( ( dir_ptr_src = opendir ( av ) ) != NULL && ( dir_ptr_dest = opendir( av ) ) != NULL ) /* check if... (3 Replies)
Hi
I have filenames coming as
FILE.V<Version>.YYYYMMDD.z
FILE.V260.20140423.z
FILE.V1.20140523
FILE.V9999.20140324.z
How do I extract the version number in a variable
I need
260
1
9999
extracted into variable
by Unix script (3 Replies)
HI ,
I WANT TO RETRIVE IN BETWEEN DATA FROM PARENTHESIS AND I AM GETTING ERRORS WHILE RUN THE AWK.I HAVE 2 FILES AND WANT TO PROCESS 1ST FILE PATTERN TO 2ND FILE AND WRITES INTO OUTPUT FILE.THIS TIME I AM PUTTING WHERE EXACTLY I AM GETTING ERRORS.SO PLEASE HELP.
PATTERN_FILE.TXT
--------------... (1 Reply)