Jupyter Notebook Pass Python Variable to Shell
dir_path = "/home/foo/bar"
!cp file1 $dir_path
dir_path = "/home/foo/bar"
!cp file1 {dir_path}
!cp file1 {dir_path + sub_dir}
HosseinZaaferani