DH_INSTALLINFO(1) Debhelper DH_INSTALLINFO(1)NAME
dh_installinfo - install info files
SYNOPSIS
dh_installinfo [debhelperoptions] [-A] [file...]
DESCRIPTION
dh_installinfo is a debhelper program that is responsible for installing info files into usr/share/info in the package build directory.
From debhelper compatibility level 11 on, dh_install will fall back to looking in debian/tmp for files, if it does not find them in the
current directory (or wherever you've told it to look using --sourcedir).
FILES
debian/package.info
List info files to be installed.
OPTIONS -A, --all
Install all files specified by command line parameters in ALL packages acted on.
--sourcedir=dir
Look in the specified directory for files to be installed. This option requires compat 11 or later (it is silently ignored in compat
10 or earlier).
Note that this is not the same as the --sourcedirectory option used by the dh_auto_* commands. You rarely need to use this option,
since dh_installinfo automatically looks for files in debian/tmp in debhelper compatibility level 11 and above.
file ...
Install these info files into the first package acted on. (Or in all packages if -A is specified).
SEE ALSO debhelper(7)
This program is a part of debhelper.
AUTHOR
Joey Hess <joeyh@debian.org>
11.1.6ubuntu2 2018-05-10 DH_INSTALLINFO(1)
Check Out this Related Man Page
DH_INSTALLINFO(1) Debhelper DH_INSTALLINFO(1)NAME
dh_installinfo - install info files
SYNOPSIS
dh_installinfo [debhelperoptions] [-A] [file...]
DESCRIPTION
dh_installinfo is a debhelper program that is responsible for installing info files into usr/share/info in the package build directory.
From debhelper compatibility level 11 on, dh_install will fall back to looking in debian/tmp for files, if it does not find them in the
current directory (or wherever you've told it to look using --sourcedir).
FILES
debian/package.info
List info files to be installed.
OPTIONS-A, --all
Install all files specified by command line parameters in ALL packages acted on.
--sourcedir=dir
Look in the specified directory for files to be installed. This option requires compat 11 or later (it is silently ignored in compat
10 or earlier).
Note that this is not the same as the --sourcedirectory option used by the dh_auto_* commands. You rarely need to use this option,
since dh_installinfo automatically looks for files in debian/tmp in debhelper compatibility level 11 and above.
file ...
Install these info files into the first package acted on. (Or in all packages if -A is specified).
SEE ALSOdebhelper(7)
This program is a part of debhelper.
AUTHOR
Joey Hess <joeyh@debian.org>
11.1.6ubuntu2 2018-05-10 DH_INSTALLINFO(1)
i'm using SunOS 5.7 and I know theres a ls option for seeing what kind of files are in a directory. I was wondering if there was a ls option that could see if the files are txt or files that can be opened in vi (1 Reply)
howdy all,
i've been trying to find info on piping info between multiple commands from the command line, but i've been unable to find any examples of piping continuous data through a chain of commands. basically, i'm trying to parse data from the top command and send it out over udp to another... (1 Reply)
Hi
I'm wondering how I can find all the files which were installed on certain date?
For example: I'm looking for alle the files which were installed on the 11.09.06 on the system.
Does somebody know how to do this?
Thanks
Reto (2 Replies)
Hello all
I wander if I make for example " ls -l "
And it gives me all the files in the directory with the additional info like data size and privileges
But what if I like to filter the stout result for example by date
When I try to do:
echo "`ls -l`" | grep "Jan 12"
it gives me the... (2 Replies)
hey, i downloaded a version of unix just recently in three files about a gig a piece in size. the website told me to merge the three files into one iso file...i did that using the xtra wizard on alchohol 120%. i tried to boot it from the virtual drive, but all it does is open a window that shows... (2 Replies)
frnds,
I m having prob woth doing some 2-3 task simultaneously...
what I want is...
I have lots ( lacs ) of files in a dir...
I want.. these info from arround 2-3 months files
filename convention is - abc20080403sdas.xyz ( for todays files )
I want
1. total no of files for 1 dec... (1 Reply)
Hi,
Im a newbie.All your suggestions needed.
Im developing a script that should that find dat files based on the file name(file name is created has date info) after comparing it with the current timestamp.Let me put it in a clear way.
For instance,
Say I have files say like
AA_XX_20121208 ... (3 Replies)
In my script I need to loop around some files like below
example files are
fa.info.abcd
fa.info.bxde
fa.info.cdas
------
for test_data in fa.info.*
do
# Some text appending logic applied
# Copy to another directory
done
Now I need to discard some files while looping around
... (9 Replies)
Hello,
I have many mp4 files inside a folder and I need to write stream info of each files.
Below script creates txt files but inside of each file is empty.
#!/bin/bash
for video in *.mp4;
do
base="${video%.mp4}"
ffprobe -i "$base".mp4 > "$base".txt;
done
exit 0
When I run... (2 Replies)
Hello,
I have standard loop
while read -r info; do
command $info
done < info
in info text file I have multiple commands each on line that I want to execute. When I used them in console they worked, but not with this loop.
This is one of the commands in info file:
grep... (4 Replies)