aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Belisle <cbelisle@mandriva.com>2001-11-13 21:16:04 +0000
committerChristian Belisle <cbelisle@mandriva.com>2001-11-13 21:16:04 +0000
commit199309afb2499789060c31b146dc7fe7b1f47438 (patch)
treef2158ce7a142d2ae1ea8e33e3e0094d1e8cd1e09
parent49c43c583987fa81516b7b3a58ca1d1856fad45a (diff)
downloadtransfugdrake-199309afb2499789060c31b146dc7fe7b1f47438.tar
transfugdrake-199309afb2499789060c31b146dc7fe7b1f47438.tar.gz
transfugdrake-199309afb2499789060c31b146dc7fe7b1f47438.tar.bz2
transfugdrake-199309afb2499789060c31b146dc7fe7b1f47438.tar.xz
transfugdrake-199309afb2499789060c31b146dc7fe7b1f47438.zip
Added comments to design the code
-rw-r--r--transfugdata.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/transfugdata.pm b/transfugdata.pm
index a2cdae1..a8280a5 100644
--- a/transfugdata.pm
+++ b/transfugdata.pm
@@ -1,11 +1,23 @@
sub transfug_locate_data {
+ # First, we have to find the windows partition
+ # After, we have to find the data folder
+ # Finally, put the folders in a file to keep them in memory
}
sub transfug_list_data {
+ # First argument is the folder in which we have all the data
+
+ # Put them in a vector table
+ system ("ls -la $_[1]");
+
+ # List them using the API
}
sub transfug_list_folders {
+ system("ls -la $_[1]");
}
sub transfug_copy_files {
+ # The argument will be a list of files to copy
+ # So we take each argument and make a copy command to it
}