Skip to content
Snippets Groups Projects
Select Git revision
  • bdd8fc50fdc70a95d76591064ff74b66cdb5507a
  • master default protected
  • ccl
  • jardin
  • cms/general/lorem
  • cms/ccl/ca-marche
  • cms/grenier/index
  • content
  • preview
  • develop
  • deploy
  • test
12 results

default.html

Blame
  • create_work_subdirs.sh 468 B
    #!/bin/bash
    for subdir in $NEEDED_WORK_DIRS; do
    		dir=/home/jovyan/work/$subdir
    		ln -s $dir /home/jovyan/$subdir
            if [ ! -f $dir ]; then
            	echo Creating $dir
            	mkdir -p $dir
            	chmod 700  $dir
            fi
    done
    
    for subfile in $NEEDED_WORK_FILES; do
    		file=/home/jovyan/work/$subfile
    		ln -s $file /home/jovyan/$subfile
            if [ ! -f $file ]; then
            	echo Creating $file
            	touch $file
            	chmod 700  $dir
            fi
    done