Sponsored Content
Top Forums Shell Programming and Scripting Zalohovani poslednich X GB dat v nezmenene strukture Post 302383248 by petysku on Tuesday 29th of December 2009 02:45:31 AM
Old 12-29-2009
Zalohovani poslednich X GB dat v nezmenene strukture

Zdravim,
muzete mi prosim poradit, jak vytvorit adresar, ve kterem bude zkopirovano poslednich (nenovejsich) X GB souboru urcenych k zalohovani. Podminkou je, ze bude zachovana stromova struktura ze zdrojoveho adesare. Moc dekuji za radu.
Petr
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Copying DAT tapes

I am looking for a way of making a backup of a system DAT tape onto another DAT tape for security reasons. (0 Replies)
Discussion started by: johnrussell
0 Replies

2. UNIX for Advanced & Expert Users

How to convert Dat to Bin

Hi all, I want to convert Dat file into binary file. So we have any command in HP Unix. (3 Replies)
Discussion started by: ravi.sadani19
3 Replies

3. UNIX for Dummies Questions & Answers

Backup my files to DAT

hi guys, im using tru64 unix and i want to put my files on tapes. i have already a hp DAT storage, do you have any admin guides for backup/restore procedures for these? tnx (1 Reply)
Discussion started by: jefferson
1 Replies

4. UNIX for Dummies Questions & Answers

Text or .dat

How do I insert a column in a text or .dat file for a date. (2 Replies)
Discussion started by: Maggiepie
2 Replies

5. SCO

PB with HP DAT 72 data cartridge

Hello, I use unixware 7.14 and I need to backup with tar command on HP DAT 72. When executing tar command the next message is diplayed: tar: ERROR: Tape write error: I/O error. When replacing the DAT 72 data cartridge with DAT 40 data cartdrige no message displayed and backup is done. Thank... (0 Replies)
Discussion started by: mcmb
0 Replies

6. Red Hat

How to view .dat file?

What is the command that can be used to open or view the .dat file in linux? Unable to read the contents of .dat file. (7 Replies)
Discussion started by: Rupaa
7 Replies

7. Shell Programming and Scripting

How to use 'ls' command to list files like *.dat, not *.*.dat?

How to use 'ls' command to list files like *.dat, not *.*.dat (5 Replies)
Discussion started by: pmcginni777
5 Replies

8. Homework & Coursework Questions

Converting .dat to UNIX

I uploaded a .dat file from sftp to my server and after using dos2unix to convert the file and check my work it says that the file was not transferred correctly and that the content is garbled. Please help (3 Replies)
Discussion started by: Ovid158
3 Replies
load_datafile(3alleg4)						  Allegro manual					    load_datafile(3alleg4)

NAME
load_datafile - Loads a datafile into memory. Allegro game programming library. SYNOPSIS
#include <allegro.h> DATAFILE *load_datafile(const char *filename); DESCRIPTION
Loads a datafile into memory in one go. If the datafile has been encrypted, you must first call packfile_password() to set the appropriate key. If the datafile contains truecolor graphics, you must set the video mode or call set_color_conversion() before loading it. Example: /* Load the resources for our game. */ DATAFILE *dat = load_datafile("game.dat"); if (!dat) abort_on_error("Couldn't load sound resources!"); /* Use resources. */ ... /* Destroy them when we don't need them any more. */ unload_datafile(dat); RETURN VALUE
Returns a pointer to the DATAFILE, or NULL on error. Remember to free this DATAFILE later to avoid memory leaks. SEE ALSO
load_datafile_callback(3alleg4), unload_datafile(3alleg4), load_datafile_object(3alleg4), set_color_conversion(3alleg4), fixup_datafile(3alleg4), packfile_password(3alleg4), find_datafile_object(3alleg4), register_datafile_object(3alleg4), excustom(3alleg4), exdata(3alleg4), exexedat(3alleg4), exgui(3alleg4), exsprite(3alleg4), exunicod(3alleg4) Allegro version 4.4.2 load_datafile(3alleg4)
All times are GMT -4. The time now is 07:49 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy