Last active
August 29, 2015 14:09
-
-
Save nsahoo/d147cf505434983a1735 to your computer and use it in GitHub Desktop.
gfal commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
== upload files from T3 to T2 == | |
export GFAL_CONFIG_DIR=~/gfal2.d | |
# copy the files | |
gfal-copy file:////shome/nsahoo/compare_data.cc srm://storage01.lcg.cscs.ch/pnfs/lcg.cscs.ch/cms/trivcat/store/user/nsahoo/test | |
# see the file content | |
gfal-cat srm://storage01.lcg.cscs.ch/pnfs/lcg.cscs.ch/cms/trivcat/store/user/nsahoo/test/compare_data.cc | |
# list the directory content | |
gfal-ls srm://storage01.lcg.cscs.ch/pnfs/lcg.cscs.ch/cms/trivcat/store/user/nsahoo/test/ | |
# remove the file | |
gfal-rm srm://storage01.lcg.cscs.ch/pnfs/lcg.cscs.ch/cms/trivcat/store/user/nsahoo/test/compare_data.cc | |
== remove and copy the directory from T3 == | |
cd /scratch/$USER | |
mkdir t3 | |
# mount T3_PSI SE as local directory | |
gfalFS -s t3 srm://t3se01.psi.ch | |
cd t3/pnfs/psi.ch/cms/trivcat/store/user/nsahoo/ | |
pwd | |
# remove a directory from T3 area | |
rm -rf BuToKstarMuMu_BpToPsiX_8TeV | |
# copy a directory from T3 area to local | |
cp -rv t3/pnfs/psi.ch/cms/trivcat/store/user/nsahoo/BuToKstarMuMu_BpToPsiX_8TeV/ . | |
# before logout always *umount* the local directories | |
gfalFS_umount /scratch/nsahoo/t3 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment